-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 923 Bytes
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
[project]
name = "gvasp"
description = 'A quick post-process for resolve or assistant the VASP calculations'
requires-python = ">=3.9"
authors = [
{ name = "Hui Zhou", email = "1051987201@qq.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
'pybind11',
'Cython',
'lxml',
'matplotlib',
'numpy',
'pandas',
'pyyaml',
'scipy',
'pytest',
'seekpath'
]
dynamic = ["version"]
[project.scripts]
gvasp = "gvasp.main:main"
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools_scm",
"numpy",
"pybind11",
"Cython"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "only-version"
local_scheme = "no-local-version"