-
Notifications
You must be signed in to change notification settings - Fork 100
/
setup.cfg
74 lines (61 loc) · 1.37 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
# copied from https://github.com/adrienverge/yamllint/
[bdist_wheel]
universal = 1
[flake8]
import-order-style = pep8
application-import-names = pyeit
ignore = E203, E266, E501, W503
max-line-length = 99
max-complexity = 18
select = B,C,E,F,W,T4,B950
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[metadata]
keywords =
eit
url = https://github.com/eitcom/pyeit
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Download = https://pypi.org/project/pyeit/#files
Source Code = https://github.com/eitcom/pyeit
[options]
zip_safe = False
packages = find:
python_requires = >=3.9
include_package_data = True
install_requires =
numpy
scipy
pandas
matplotlib
shapely
trimesh
imageio
allantools
test_suite = tests
tests_require =
{tests_require}
[options.extras_require]
test =
pytest
pytest-cov
tox
imageio
black
flake8
[options.packages.find]
exclude =
tests
tests.*
[options.package_data]
pyeit = py.typed, _version.txt, *.pyi
[coverage:run]
relative_files = True