-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tight_binding_redweasel"
version = "0.0.1"
authors = [
{ name="Henrik Dick", email="[email protected]" },
]
description = "A package implementing tight binding fits and advanced symmetrisation operations. It also contains various useful utilities for displaying bandstructure data."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy >= 1.23.5',
'scipy >= 1.14.0',
'scikit-image >= 0.20.0',
'matplotlib >= 3.8.0',
]
[project.optional-dependencies]
tests = [
'coverage>=5.0.3',
'pytest',
'pytest-benchmark[histogram]>=3.2.1',
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
[project.urls]
Homepage = "https://github.com/redweasel/tight-binding"
Issues = "https://github.com/redweasel/tight-binding/issues"