-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
57 lines (46 loc) · 1.2 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
# 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/liubenyuan/pyeit-apps
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
project_urls =
Download = https://pypi.org/project/pyeit-apps/#files
Source Code = https://github.com/liubenyuan/pyeit-apps
[options]
zip_safe = False
packages = find:
python_requires = >=3.6
include_package_data = True
install_requires =
numpy
scipy
pyeit
[options.packages.find]
exclude =
tests
tests.*
[options.package_data]
pyeit = py.typed, _version.txt, *.pyi, data/
[coverage:run]
relative_files = True