-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
79 lines (70 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "DynaDojo"
authors = [
{name = "Logan Mondal Bhamidipaty", email = "[email protected]"},
{name = "Tommy Anthony Bruzzese", email = "[email protected]"},
{name = "Max Kanwal", email = "[email protected]"},
{name = "Rami Ratl Mrad", email = "[email protected]"},
{name = "Caryn Tran", email = "[email protected]"}
]
dependencies = [
"numpy",
"networkx",
"ndlib",
"scikit-learn",
"torch",
"torchdiffeq",
"cellpylib",
"pysindy",
"pydmd",
"seaborn"
]
requires-python = ">=3.10,<=3.11"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
# Pytorch CPU https://github.com/pdm-project/pdm/issues/694
[[tool.pdm.source]]
type = "find_links"
url = "https://download.pytorch.org/whl/cpu/torch_stable.html"
name = "pytorch"
# Tensorflow Wheel Issues https://github.com/python-poetry/poetry/issues/8271
# Specifying Env Markers https://peps.python.org/pep-0508/#environment-markers
[tool.pdm.dev-dependencies]
dev = [
"pylint",
"jupyter>=1.0.0",
"parameterized>=0.9.0",
]
[project.optional-dependencies]
all = [
"dynadojo[rebound, tensorflow]",
]
rebound = [
"rebound>=4.0.1",
]
tensorflow = [
"tensorflow",
]
tensorflow-mac = [
"dynadojo[tensorflow]",
"tensorflow-metal",
]
tensorflow-old = [
"tensorflow-macos; sys_platform=='darwin' and platform_machine=='arm64'",
"tensorflow-intel; sys_platform=='win32'",
"tensorflow-cpu; (sys_platform=='linux' or sys_platform=='darwin') and (platform_machine!='arm64' and platform_machine!='aarch64')",
"tensorflow-cpu-aws; sys_platform=='linux' and (platform_machine=='arm64' or platform_machine=='aarch64')",
"tensorflow-io-gcs-filesystem; sys_platform!='darwin' or platform_machine!='arm64' or sys_platform=='win32'"
]
[project.urls]
Home = "https://github.com/FlyingWorkshop/dynadojo/"