forked from scivision/python-image-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
76 lines (69 loc) · 1.48 KB
/
setup.cfg
File metadata and controls
76 lines (69 loc) · 1.48 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
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
[metadata]
name = pyimagefilter
version = 0.7.0
author = Michael Hirsch, Ph.D.
url = https://github.com/scivision/python-image-processing
description = Demo of Python image processing
keywords =
hyperspectra
image filtering
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Operating System :: OS Independent
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: System :: Networking
Topic :: Utilities
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.5
setup_requires =
setuptools >= 38.6
pip >= 10
twine >= 1.11
include_package_data = True
packages = find:
install_requires =
numpy
matplotlib
scipy
scikit-image
imageio
spectral
[options.extras_require]
tests =
pytest
cov =
pytest-cov
coveralls
flake8
mypy
[options.entry_points]
console_scripts =
[flake8]
max-line-length = 132
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/
[coverage:run]
cover_pylib = false
omit =
/home/travis/virtualenv/*
*/site-packages/*
*/bin/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
except RuntimeError
except NotImplementedError
except ImportError
except FileNotFoundError
except CalledProcessError
logging.warning
logging.error
logging.critical
if __name__ == .__main__.: