-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.72 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "abacustest"
dynamic = ["version"]
description = "Workflow for the performance running of ABACUS"
readme = "README.md"
authors = [
{ name = "pxlxingliang", email = "pengxl@aisi.ac.cn" },
{ name = "QuantumMisaka", email = "quanmisaka@stu.pku.edu.cn" },
]
license = { file = "LICENCE" }
classifiers = [
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Environment :: Console",
]
dependencies = [
"pydflow>=1.8.45",
"numpy",
"pandas",
"pyecharts",
"seekpath",
"phonopy",
"dpdata",
"ase",
"matplotlib",
"pydantic"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/pxlxingliang/abacus-test"
[project.scripts]
abacustest = "abacustest.main:main"
[tool.setuptools]
packages = ["abacustest", "abacustest.skills"]
package-dir = { "abacustest" = "abacustest", "abacustest.skills" = "skills" }
[tool.setuptools.dynamic]
version = { attr = "abacustest.version.__version__" }
[tool.setuptools.package-data]
abacustest = ["*.py", "*/*.py", "*/*/*.py", "lib_prepare/input-params.json"]
"abacustest.skills" = ["*"]