forked from nats-io/nats.py2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 832 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
import os
from setuptools import setup, find_packages
from nats import __version__
this_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(this_dir, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(
name='nats-client',
version=__version__,
description='NATS client for Python 2',
long_description='Tornado based Python client for NATS, a lightweight, high-performance cloud native messaging system',
url='https://github.com/nats-io/python-nats',
author='Waldemar Quevedo',
author_email='[email protected]',
license='Apache 2.0 License',
packages=['nats', 'nats.io', 'nats.protocol'],
install_requires=requirements,
zip_safe=True,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
]
)