add classifiers

This commit is contained in:
Jack Robison 2018-11-08 10:34:39 -05:00
parent b203a5bdc8
commit 5973c3de1c
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -11,13 +11,24 @@ base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
setup(
name=__name__,
version=__version__,
author=__author__,
author_email=__email__,
description="UPnP for asyncio",
keywords="upnp asyncio",
keywords="upnp asyncio ssdp network scpd",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: System :: Networking",
"Topic :: Communications :: File Sharing"
],
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/lbryio/aioupnp",