From 5973c3de1c8a4ea1618244337fe2bc7273841dc6 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 8 Nov 2018 10:34:39 -0500 Subject: [PATCH] add classifiers --- setup.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8325f40..ed8cc77 100644 --- a/setup.py +++ b/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",