forked from containers/podman-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (46 loc) · 1.45 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
[metadata]
name = podman
version = 4.5.0
author = Brent Baude, Jhon Honce
author_email = [email protected]
description = Bindings for Podman RESTful API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/containers/podman-py
license = Apache-2.0
license_files = LICENSE
platforms = any
project_urls =
Bug Tracker = https://github.com/containers/podman-py/issues
Libpod API = https://docs.podman.io/en/latest/_static/api.html
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
keywords = podman, libpod
[options]
include_package_data = True
python_requires = >=3.6
test_suite =
# Any changes should be copied into pyproject.toml
install_requires =
pyxdg >=0.26
requests >=2.24
tomli>=1.2.3; python_version<'3.11'
urllib3
# typing_extensions are included for RHEL 8.5
# typing_extensions;python_version<'3.8'
[bdist_wheel]
# python < 3.6 not supported
universal = false
[sdist]
formats = gztar