forked from tummfm/chemtrain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (83 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
88 lines (83 loc) · 2.01 KB
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
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "chemtrain"
authors = [
{name = "Stephan Thaler", email = "stephan.thaler@tum.de"},
{name = "Paul Fuchs", email = "paul.fuchs@tum.de"},
]
description = "Machine-learning deep molecular dynamics potentials."
readme = "README.md"
license = {"text" = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers"
]
requires-python = ">=3.10"
dependencies = [
'jax <= 0.4.37',
'jaxlib <= 0.4.37',
'scipy < 1.13', # Removed scipy.linal.tril, etc.
'jax-md',
'jax-sgmc',
'optax',
'dm-haiku',
'sympy',
'tree_math',
'cloudpickle',
'chex',
'blackjax==0.3.0',
'jaxopt',
'dm-tree',
'networkx',
'protobuf<=3.20'
]
dynamic = ["version"]
[project.urls]
"Documentation" = "https://chemtrain.readthedocs.io/en/latest/"
"Source" = "https://github.com/tummfm/chemtrain"
"Bug Tracker" = "https://github.com/tummfm/chemtrain/issues"
[project.optional-dependencies]
"all" = [
"mdtraj",
"matplotlib",
'tomli',
'tomli-w',
"scikit-learn",
]
"test" = [
"pylint",
"pytest",
"pytest-mock",
]
"docs" = [
"sphinx >= 3",
"sphinx-book-theme",
"sphinx-autodoc-typehints == 1.11.1",
"myst-nb",
"matplotlib",
"sphinx-remove-toctrees",
"breathe",
"sphinxcontrib-mermaid"
]
"stable" = [
"jax == 0.3.25",
"jaxlib == 0.3.25",
"chex == 0.1.5",
"orbax-checkpoint == 0.1.1",
"orbax == 0.1.1"
]
[tool.setuptools.packages.find]
namespaces = false
include = ["chemtrain*", "jax_md_mod*"]
where = [""]
[tool.setuptools.dynamic]
version = {attr = "chemtrain.version.__version__"}