-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
38 lines (33 loc) · 1.14 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "castepxbin"
authors = [{name = "Bonan Zhu", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = ["numpy>=1,<2", "scipy>=1,<2"]
[project.urls]
"Homepage" = "https://github.com/zhubonan/castepxbin"
"Documentation" = "https://zhubonan.github.io/castepxbin/"
[project.optional-dependencies]
doc = [
"sphinx-click>=4,<5", "sphinx-autodoc2>=0.4,<0.5", "sphinx-book-theme>=1,<2", "sphinx-copybutton>=0.3,<0.4",
"myst-parser[linkify]", "sphinx", "linkify-it-py"
]
test = ["pytest", "pytest-cov", "coverage"]
"pre-commit" = [
"pre-commit~=2.2",
"pylint~=2.4.4; python_version>='3.0'",
"pylint-pytest",
]