-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
35 lines (30 loc) · 1.28 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "easyunfold"
authors = [{name = "Bonan Zhu", email = "zhubonan@outlook.com"}, {name = "Seán Kavanagh", email = "skavanagh@seas.harvard.edu"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = ["scipy~=1.0", "numpy~=1.0", "matplotlib~=3.0", "ase~=3.14", "spglib~=2.0", "click",
"monty", "tqdm~=4.0", "tabulate~=0.8", "colormath~=3.0", "castepxbin~=0.3.0", "castepinput~=0.1"]
[project.urls]
"Homepage" = "https://github.com/SMTG-Bham/easyunfold"
"Documentation" = "https://smtg-Bham.github.io/easyunfold/"
[project.scripts]
easyunfold = "easyunfold.cli:easyunfold"
[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>=6,<7", "astroid<3"
# astroid needs to be <3 due to: https://github.com/sphinx-extensions2/sphinx-autodoc2/issues/31
]
test = ["pytest", "pytest-cov", "coverage", "sumo"]
dos = ["sumo"]
pre-commit = ["pre-commit", "pylint~=2.11", "sumo"]