-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
67 lines (60 loc) · 1.8 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
[project]
name = "sevenn"
version = "0.10.1"
authors = [
{ name = "Yutack Park", email = "parkyutack@snu.ac.kr" },
{ name = "Jaesun Kim" },
{ name = "Gijin Kim" },
{ name = "Hyungmin An" },
]
description = "Scalable EquiVariance Enabled Neural Network"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"ase",
"braceexpand",
"pyyaml",
"e3nn",
"tqdm",
"scikit-learn",
"torch_geometric>=2.5.0",
"numpy<2.0",
]
[project.scripts]
sevenn = "sevenn.main.sevenn:main"
sevenn_get_model = "sevenn.main.sevenn_get_model:main"
sevenn_graph_build = "sevenn.main.sevenn_graph_build:main"
sevenn_inference = "sevenn.main.sevenn_inference:main"
sevenn_patch_lammps = "sevenn.main.sevenn_patch_lammps:main"
sevenn_preset = "sevenn.main.sevenn_preset:main"
[project.urls]
Homepage = "https://github.com/MDIL-SNU/SevenNet"
Issues = "https://github.com/MDIL-SNU/SevenNet/issues"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[tool.setuptools.package-data]
sevenn = [
"logo_ascii",
"pair_e3gnn/*.cpp",
"pair_e3gnn/*.h",
"pair_e3gnn/*.cu",
"pair_e3gnn/patch_lammps.sh",
"presets/*.yaml",
"pretrained_potentials/SevenNet_0__11July2024/checkpoint_sevennet_0.pth",
"pretrained_potentials/SevenNet_0__22May2024/checkpoint_sevennet_0.pth",
"py.typed",
]
[tool.setuptools.packages.find]
include = ["sevenn*"]
exclude = ["tests*", "example_inputs*", ]
[tool.pytest.ini_options]
log_cli = true
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"