forked from deepmodeling/dpgen2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.38 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dpgen2"
dynamic = ["version"]
description = "DPGEN2: concurrent learning workflow generating the machine learning potential energy models."
authors = [
{name = "DeepModeling"},
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
dependencies = [
'numpy',
'dpdata',
'pydflow>=1.5.10',
'dargs>=0.3.1',
'scipy',
]
requires-python = ">=3.7"
readme = "README.md"
keywords = ["deep potential", "concurrent learning", "work flow"]
[project.urls]
Homepage = "https://github.com/deepmodeling/dpgen2"
documentation = "https://docs.deepmodeling.com/projects/dpgen2"
repository = "https://github.com/deepmodeling/dpgen2"
[project.entry-points.console_scripts]
dpgen2 = "dpgen2.entrypoint.main:main"
[project.optional-dependencies]
docs = [
'sphinx',
'recommonmark',
'sphinx_rtd_theme>=1.0.0rc1',
'numpydoc',
'myst_parser',
'deepmodeling_sphinx',
'sphinx-argparse',
"dargs>=0.3.1",
]
[tool.setuptools.packages.find]
include = ["dpgen2*"]
[tool.setuptools.package-data]
dpgen2 = ['*.json']
[tool.setuptools_scm]
write_to = "dpgen2/_version.py"
[tool.pyright]
include = [
"dpgen2",
]