generated from JacobARose/python-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (80 loc) · 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
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
93
94
95
; See:
; https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[metadata]
name = imutils
version = attr: imutils.__init__.__version__
author = JacobARose
author_email = jacobrose@brown.edu
description = "Refined collection of various image file utilities I've written and re-written at various points during my graduate studies performing research in computer vision."
long_description = file: README.md, CHANGELOG.md, LICENSE
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
platforms = posix
url = https://github.com/JacobARose/image-utils
[options]
python_requires = >=3.7
setup_requires =
numpy
pandas
Pillow
tqdm
install_requires =
numpy>=1.19
pandas>=1.3.0
Pillow
tqdm
packages = find:
zip_safe = False
[options.packages.find]
include =
imutils
imutils.*
assets
image_catalog
image_catalog.*
exclude =
docs
tests
[options.package_data]
* = assets/*.jpg
[options.extras_require]
develop =
# 'file:requirements-dev.txt'
pre-commit
pytest
# format
autopep8
flake8
flake8-absolute-import
flake8-broken-line
flake8-builtins
flake8-commas
flake8-docstrings
flake8-import-order
flake8-multiline-containers
flake8-mutable
pep8-naming
# documentation
sphinx
sphinx_rtd_theme
livereload
[aliases]
test=pytest
[flake8]
count = True
show-source = True
statistics = True
# F401: imported but unused
ignore = E203, E266, E501, W503, E231, F541, F401
max-line-length = 100
max-complexity = 18
select = B,C,E,F,W,T4,B9
per-file-ignores =
; Ignore 'Missing docstring in public module' and 'variable "copyright" is shadowing a python builtin'
docs/conf.py:A001,D100
; Ignore missing docstring in public module, class, method, function, package
tests/*.py:D100,D101,D102,D103,D104
application-import-names = imutils
; https://github.com/PyCQA/flake8-import-order/blob/master/tests/test_cases/complete_google.py
import-order-style = google