-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathsetup.py
25 lines (23 loc) · 852 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 io
from setuptools import setup
setup(
name='txZMQ',
version=io.open('VERSION', encoding='utf-8').read().strip(),
packages=['txzmq', 'txzmq.test'],
license='MPLv2',
author='Andrey Smirnov',
author_email='[email protected]',
url='https://github.com/smira/txZMQ',
description='Twisted bindings for ZeroMQ',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
long_description=io.open('README.rst', encoding='utf-8').read(),
install_requires=["Twisted>=10.0", "pyzmq>=13"],
)