-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
70 lines (64 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tbmodels"
version = "1.4.4"
description = "A tool for reading, creating and modifying tight-binding models."
authors = ["Dominik Gresch <mail@greschd.ch>"]
license = "Apache 2.0"
readme = "README.md"
documentation = "https://tbmodels.greschd.ch"
repository = "https://github.com/Z2PackDev/TBmodels"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"tight-binding",
"condensed matter",
"solid-state",
"physics",
"materials science",
]
packages = [
{ include = "tbmodels", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
numpy = "^1.20"
scipy = "^1.7"
h5py = "^3.2"
symmetry-representation = ">=0.2,<1"
click = "^8.1"
bands-inspect = "^0.3"
"fsc.hdf5-io" = "^1.0.3"
kwant = { version= "^1.3", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^6.0"
pytest-cov = "^3.0"
pythtb = "^1.8"
sphinx = "^5.0"
sphinx-rtd-theme = "^1.0"
ipython = ">=7.10"
sphinx-click = "4.3"
black = "^22.0"
pre-commit = "^2.20"
pylint = "^2.15"
isort = "^5.10"
mypy = "^0"
"ruamel.yaml" = "^0.17.21"
typing-extensions = "^4.3"
[tool.poetry.extras]
kwant = ["kwant"]
[tool.poetry.scripts]
tbmodels = 'tbmodels._cli:cli'
[tool.poetry.plugins."fsc.hdf5_io.load"]
tbmodels = "tbmodels"