add classifiers
This commit is contained in:
parent
b203a5bdc8
commit
5973c3de1c
1 changed files with 12 additions and 1 deletions
13
setup.py
13
setup.py
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue