Skip to content
Snippets Groups Projects
setup.cfg 1.06 KiB
Newer Older
[metadata]
name = pod-client
version = attr: pod_client.__version__
description = A Python3 client to use POD rest API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.ubicast.net/public-projects/python-pod-client 
download_url = https://git.ubicast.net/public-projects/python-pod-client.git 
author = UbiCast
author_email = dev@ubicast.eu
keywords =
    api
    client
    pod
    ubicast
license = LGPLv3
license_file = LICENSE
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Console
    License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Topic :: Multimedia :: Video
    Topic :: Software Development :: Libraries :: Python Modules

[options]
include_package_data = True
install_requires =
    requests ~= 2.21
packages =
    pod_client
setup_requires=
    setuptools
    wheel

[options.extras_require]
dev =
    flake8
    pytest
    pytest-cov
    vulture

[bdist_wheel]
universal = 1