-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
43 lines (39 loc) · 944 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gdpx"
version = "0.0.10"
dependencies = [
"ase>=3.23",
"h5py>=3.7.0",
"joblib>=1.1.0",
"networkx>=2.6.3",
"omegaconf>=2.3.0",
"pyyaml>=6.0",
"tinydb>=4.7.0",
]
requires-python = ">=3.9"
authors = [
{ name="Jiayan Xu", email="[email protected]" },
]
description = "Automate computational chemistry/materials sciance and machine learning interatomic potential training workflow."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/hsulab/GDPy"
Issues = "https://github.com/hsulab/GDPy/issues"
[project.scripts]
gdp = "gdpx.main:main"
[tool.pyright]
include = [
"src"
]
exclude = [
"**/tests",
]