-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.34 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools >= 68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "solidspy-opt"
version = "0.1.0"
description = "This package is made to perfome topology optimization of 2D solids"
readme = "README.md"
authors = [
{name = "Kevin Sepúlveda-García", email = "[email protected]"},
{name = "Nicolas Guarin-Zapata", email = "[email protected]"}
]
license = {file = "LICENSE"}
keywords = ["finite-elements", "scientific-computing", "deep learning", "topology", "optimization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"easygui",
"meshio==3.0",
"tensorflow",
"solidspy"
]
[project.optional-dependencies]
dev = [
"pytest",
"coverage",
"pytest-cov",
"black",
"flake8",
"solidspy",
"numpy"
]
[project.urls]
Homepage = "https://github.com/AppliedMechanics-EAFIT/SolidsPy-Opt"
Repository = "https://github.com/AppliedMechanics-EAFIT/SolidsPy-Opt"
BugTracker = "https://github.com/AppliedMechanics-EAFIT/SolidsPy-Opt/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]