-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
85 lines (77 loc) · 1.81 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
[metadata]
name = variations
version = attr: variations.__version__
description = A simple interface that allows processing of images.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dldevinc/variations
license = BSD license
author = Mihail Mishakin
author_email = [email protected]
maintainer = Mihail Mishakin
maintainer_email = [email protected]
platforms = OS Independent
classifiers =
Intended Audience :: Developers
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
[bdist_wheel]
universal = 1
[options]
zip_safe = false
include_package_data = true
python_requires = >= 3.9
install_requires =
Pillow>=6.0.0
pilkit>=1.1.6
packages = find:
[options.extras_require]
facedetection = face_recognition
stackblur = pillow-stackblur
full =
face_recognition
pillow-stackblur
[options.packages.find]
exclude =
tests
tests.*
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 90
known_first_party = app
[flake8]
max-line-length = 90
max-complexity = 10
exclude =
tests/
ignore =
# Line too long
E501
# Continuation line under-indented for visual indent
E128
# Line break after binary operator
W503
W504
[mypy]
files = variations
strict_optional = False
check_untyped_defs = True
allow_redefinition = True
pretty = True
[coverage:run]
source = variations
omit =
*migrations*
*tests*