-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (45 loc) · 1.26 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
# Backward compatbile with ancient setuptools.
# Modern python packaging tools are supported through pyproject.toml.
[metadata]
name = apkg
author = Jakub Ružicka
author_email = jakub.ruzicka@nic.cz
description = cross-distro upstream packaging automation tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://gitlab.nic.cz/packaging/apkg
project_urls =
Bug Tracker = https://gitlab.nic.cz/packaging/apkg/-/issues
Docs = https://apkg.readthedocs.io/
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: System :: Archiving :: Packaging
Topic :: Utilities
[options]
packages = find:
install_requires =
beautifulsoup4
blessed
cached_property
click
distro
jinja2
packaging
requests
toml
[options.packages.find]
exclude =
docs
[options.entry_points]
console_scripts =
apkg = apkg.cli:main
[pycodestyle]
exclude=build,lib,.tox,third,*.egg,docs,packages,.eggs
# E123, E125, W503 skipped as they are invalid PEP-8.
ignore = E123,E125,W503
show-source = True