forked from nats-io/nats.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 899 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
23
24
25
26
27
28
from setuptools import setup
from nats.aio.client import __version__
EXTRAS = {
'nkeys': ['nkeys'],
}
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
url='https://github.com/nats-io/nats.py',
author='Waldemar Quevedo',
author_email='wally@synadia.com',
license='Apache 2 License',
packages=['nats', 'nats.aio', 'nats.protocol'],
zip_safe=True,
extras_require=EXTRAS
)