-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
46 lines (43 loc) · 1.22 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
[metadata]
name = lppa
version = attr: lppa.__version__
description = Request PPAs for deb source packages
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/athos-ribeiro/lppa
project_urls =
Changelog = https://github.com/athos-ribeiro/lppa/blob/main/CHANGELOG.md
Bug Tracker = https://github.com/athos-ribeiro/lppa/issues
Source Code = https://github.com/athos-ribeiro/lppa
license = GPLv3+
license_files = LICENSE
platform = any
author = Athos Ribeiro
author_email = [email protected]
keywords =
PPA
Ubuntu
Launchpad
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
[options.entry_points]
console_scripts =
lppa = lppa.cli:run
[options]
packages = find:
python_requires = >=3.6
install_requires =
launchpadlib
requests
[flake8]
max-line-length = 100
doctests = True