-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.39 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Repolib"
version = "2.2.1"
authors = [
{ name="Ian Santopietro", email="ian@system76.com" }
]
description = "Easily manage software sources"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE.LESSER"}
classifiers = [
'Environment :: Console',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System'
]
dependencies = [
"dbus-python",
"distro >= 1.4.0",
"gnupg",
"httplib2 >= 0.19.0",
"launchpadlib",
"python-debian"
]
[project.urls]
"Homepage" = "https://github.com/pop-os/repolib"
"Bug Tracker" = "https://github.com/pop-os/repolib/issues"
"Documentation" = "https://repolib.readthedocs.io/en/latest/"
[project.scripts]
apt-manage = "repolib.command:bin.apt_manage"
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.2.1"
version_files = [
"pyproject.toml:^version",
"setup.cfg:^version",
"src/repolib/__version__.py:__version__"
]
tag_format = "$version"