forked from bcbnz/pylabels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
42 lines (39 loc) · 1.01 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
[metadata]
name = pylabels2
version = attr: _version
author = Blair Bonnett
author_email = [email protected]
url = https://github.com/davis-junior/pylabels/
license = GPLv3+ license, see LICENSE
description = Library to generate PDFs for printing labels
long_description = file: README.md
long_description_content_type = text/markdown
keywords = labels avery
classifiers=
development status :: 5 - Production/Stable
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
[options]
python_requires = >=3.12
zip_safe = False
include_package_data = True
packages =
pylabels
install_requires =
reportlab
[options.packages.find]
include =
pylabels
exclude =
demo*
django_demo*
label*
pylabels.demos*
pylabels.django_demo*
[flake8]
ignore = E226,W503,E203
max-line-length = 95
max-complexity = 12
exclude = .tox,.git,__pycache__,build,dist,.eggs,_version.py
per-file-ignores = __init__.py: F401