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
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'openhomedevice',
version = '2.2.1',
author = 'Barry John Williams',
author_email = 'barry@bjw.me.uk',
description='Provides an API for requesting information from an Openhome device',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/bazwilliams/openhomedevice',
packages=setuptools.find_packages(),
download_url = 'https://github.com/bazwilliams/openhomedevice/tarball/2.1',
keywords = ['upnp', 'dlna', 'openhome', 'linn', 'ds', 'music', 'render', 'async'],
install_requires = ['async_upnp_client>=0.40', 'lxml>=4.8.0'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)
|