From dd01de5a6a280ae0aca3437f1ec762d0f328e87a Mon Sep 17 00:00:00 2001 From: Waldemar Quevedo Date: Tue, 10 May 2016 11:11:25 -0700 Subject: [PATCH] Update setup.py --- setup.py | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index bd20241b..1d5c743e 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,21 @@ from nats.aio.client import __version__ setup( - name='asyncio-nats-client', - version=__version__, - description='NATS client for Python Asyncio', - long_description='Asyncio based Python client for NATS, a lightweight, high-performance cloud native messaging system', - url='https://github.com/nats-io/asyncio-nats', - author='Waldemar Quevedo', - author_email='wally@apcera.com', - license='MIT License', - packages=['nats', 'nats.aio', 'nats.protocol'], - zip_safe=True, + name='asyncio-nats-client', + version=__version__, + description='NATS client for Python Asyncio', + long_description='Asyncio based Python client for NATS, a lightweight, high-performance cloud native messaging system', + classifiers=[ + 'Intended Audience :: Developers', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5' + ], + url='https://github.com/nats-io/asyncio-nats', + author='Waldemar Quevedo', + author_email='wally@apcera.com', + license='MIT License', + packages=['nats', 'nats.aio', 'nats.protocol'], + zip_safe=True, )