-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
92 lines (80 loc) · 1.85 KB
/
setup.cfg
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[metadata]
name = exactdiag
description = Exact diagonalization methods
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dylanljones/exactdiag
author = Dylan Jones
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Physics
project_urls =
Source = https://github.com/dylanljones/exactdiag
[options]
packages = find:
install_requires =
colorcet>=2.0.0
hypothesis>=6.0.0
h5py
lattpy>=0.7.6
matplotlib>=3.0.0
numba>=0.56.0
numpy>=1.22.0
pytest>=6.2.0
scipy>=1.9.0
setuptools>=60.0.0
setuptools-scm[toml]>=4.0.0
python_requires = >=3.8
include_package_data = True
platforms = any
zip_safe = False
[options.extras_require]
build =
wheel>=0.37.0
test =
pytest-cov>=3.0.0
gftool>=0.11.0
[aliases]
test = pytest
[pydocstyle]
add-ignore = D105 # ignore undocumented dunder methods like `__str__`
[flake8]
max-line-length = 88
ignore = D203, E203, W503
per-file-ignores = __init__.py:F401,F403
exclude =
.git,
.idea,
__pycache__,
build,
dist,
[coverage:run]
branch = False
source = exactdiag
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
def __str__
@abstract
@property
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
ignore_errors = True
omit =
exactdiag/tests/*
exactdiag/_expm_multiply.py
exactdiag/_version.py