-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (30 loc) · 906 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "castepinput"
authors = [{name = "Bonan Zhu", email = "zhubonan@outlook.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta"
]
dynamic = ["version", "description"]
dependencies = ["numpy"]
requires-python = ">=3.8"
[project.urls]
Home = "https://github.com/zhubonan/castepinput"
[project.optional-dependencies]
"pre-commit" = [
"pre-commit", "pylint-pytest"
]
test = ["pytest", "pytest-cov", "coverage"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["E501"]