File: setup.cfg

package info (click to toggle)
python-podman 5.4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,140 kB
  • sloc: python: 7,532; makefile: 82; sh: 75
file content (52 lines) | stat: -rw-r--r-- 1,521 bytes parent folder | download | duplicates (3)
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
[metadata]
name = podman
version = 5.4.0.1
author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella
author_email = jhonce@redhat.com
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.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: 3.13
    Topic :: Software Development :: Libraries :: Python Modules
keywords = podman, libpod

[options]
include_package_data = True
python_requires = >=3.9
test_suite =
# Any changes should be copied into pyproject.toml
install_requires =
    requests >=2.24
    tomli>=1.2.3; python_version<'3.11'
    urllib3

[options.extras_require]
progress_bar =
    rich >= 12.5.1

# 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