-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (80 loc) · 1.9 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>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pesmaker"
dynamic = ["version"]
description = "Foundation-potential-assisted workflow for application-oriented machine-learning potential dataset generation."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "PESMaker developers" }
]
maintainers = [
{ name = "Ting Liang", email = "liangting.zj@gmail.com" }
]
license = { file = "LICENSE" }
keywords = [
"atomistic simulation",
"machine-learned interatomic potentials",
"MACE",
"GPUMD",
"VASP"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"ase>=3.23",
"matplotlib>=3.7",
"numpy>=1.24",
"PyYAML>=6.0",
"seaborn>=0.13"
]
[project.optional-dependencies]
atomistic = [
"pymatgen>=2024.5"
]
selection = [
"calorine>=3.3"
]
mace = [
"mace-torch>=0.3"
]
dev = [
"pytest>=8.0",
"ruff>=0.6"
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5"
]
release = [
"build>=1.2",
"twine>=5.1"
]
[project.scripts]
pesmaker = "pesmaker.cli:main"
[project.urls]
Homepage = "https://github.com/Tingliangstu/PESMaker"
Documentation = "https://Tingliangstu.github.io/PESMaker/"
Repository = "https://github.com/Tingliangstu/PESMaker.git"
Issues = "https://github.com/Tingliangstu/PESMaker/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "pesmaker.__version__" }
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.pytest.ini_options]
pythonpath = ["src"]