forked from nats-io/nats.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 785 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
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',
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='[email protected]',
license='MIT License',
packages=['nats', 'nats.aio', 'nats.protocol'],
zip_safe=True,
)