-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.cfg
60 lines (54 loc) · 1.53 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
[metadata]
name = zbarlight
version = 3.1.dev0
author = Polyconseil
author_email = [email protected]
url = https://github.com/Polyconseil/zbarlight
description = A simple zbar wrapper
long_description = file: README.rst
license = BSD 3-Clause License
keywords = zbar, QR code reader
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Image Recognition
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3
setup_requires =
setuptools
install_requires =
Pillow
[options.packages.find]
where = src
[flake8]
max-line-length = 120
exclude = build,dist,venv
max-complexity = 10
ignore = B404,C815,D10,W503
# B404: Import subprocess
# C815: Missing trailing comma in Python 3.5+
# D10x: Missing docstrings
# W503: Line break before binary operator (we use W504: Line break after binary operator)
per-file-ignores =
tests/*:S101
# S101: Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
[isort]
force_single_line = 1
line_length = 120
multi_line_output = 3
known_first_party = zbarlight
[zest.releaser]
create-wheel = no
[distutils]
index-servers = pypi