-
Notifications
You must be signed in to change notification settings - Fork 214
/
pyproject.toml
67 lines (61 loc) · 1.56 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "schnetpack"
# Declaring that the version will be read dynamically.
# This helps us not having to specify the version twice.
# We have to specify the version only in schnetpack.__version__
# see [tool.setuptools.dynamic] below
dynamic = ["version"]
authors = [
{ name = "Kristof T. Schuett" },
{ name = "Michael Gastegger" },
{ name = "Stefaan Hessmann" },
{ name = "Niklas Gebauer" },
{ name = "Jonas Lederer" }
]
description = "SchNetPack - Deep Neural Networks for Atomistic Systems"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0.0",
"sympy<=1.12",
"ase>=3.21",
"h5py",
"pyyaml",
"hydra-core>=1.1.0",
"torch>=1.9",
"pytorch_lightning>=2.0.0",
"torchmetrics",
"hydra-colorlog>=1.1.0",
"rich",
"fasteners",
"dirsync",
"torch-ema",
"matscipy>=1.1.0",
"tensorboard>=2.17.1",
"tensorboardX>=2.6.2.2",
"tqdm",
"pre-commit",
"black",
"protobuf"
]
[project.optional-dependencies]
test = ["pytest", "pytest-datadir", "pytest-benchmark"]
[tool.setuptools]
package-dir = { "" = "src" }
script-files = [
"src/scripts/spkconvert",
"src/scripts/spktrain",
"src/scripts/spkpredict",
"src/scripts/spkmd",
"src/scripts/spkdeploy",
]
[tool.setuptools.dynamic]
version = {attr = "schnetpack.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
schnetpack = ["configs/**/*.yaml"]