-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.14 KB
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
[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="hdick@physik.uni-bielefeld.de" },
]
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.7.0',
'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"
[tool.autopep8]
max_line_length = 120
ignore = "E501,W6,E731,E711,E712" # or ["E501", "W6"]
aggressive = 3
[project.urls]
Homepage = "https://github.com/redweasel/tight-binding"
Issues = "https://github.com/redweasel/tight-binding/issues"