Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Waldemar Quevedo committed May 10, 2016
1 parent f11f2df commit dd01de5
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions setup.py
Expand Up @@ -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,
)

0 comments on commit dd01de5

Please sign in to comment.