-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
75 lines (67 loc) · 1.69 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
[metadata]
name = ppf-datamatrix
version = attr: ppf.datamatrix.__version__
description = Python port of https://github.com/datalog/datamatrix-svg
long_description = file: docs/README_pypi.md
long_description_content_type = text/markdown
url = https://github.com/adrianschlatter/ppf.datamatrix/tree/master
author = Adrian Schlatter
license = MIT
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Manufacturing
Intended Audience :: Information Technology
Intended Audience :: Other Audience
Topic :: Utilities
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Operating System :: OS Independent
Framework :: IPython
keywords = datamatrix, svg, python, ipython, codecs
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.6
[options.packages.find]
where = src
[options.extras_require]
# List additional groups of dependencies here. You can install these using
# pip install -e .[dev,test]
test =
flake8
check-manifest
pytest
coverage
dev =
tox
twine
[check-manifest]
ignore =
tox.ini
tests
tests/**
docs/**
[flake8]
per-file-ignores =
# imported but unused, import *, undefined name:
__init__.py: F401, F403, F821
# imported but unused: Needed due to side-effects of import:
test_ascii.py: F401
test_edifact.py: F401
test_X12.py: F401
test_C40.py: F401
test_text.py: F401
# bare except: We *are* trying to crash it:
test_datamatrix.py: E722
filename =
*/src/*.py
*/docs/*.py
*/tests/*.py
setup.py
[coverage:run]
command_line = -m pytest
branch = True
[coverage:report]
omit = tests/*