-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (29 loc) · 985 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
29
30
31
32
33
import os
from setuptools import setup
def read(relpath):
filename = os.path.join(os.path.dirname(__file__), relpath)
with open(filename) as f:
return f.read()
setup(
name='txpool',
version='1.0.2',
description='A persistent process pool in Python for Twisted',
long_description=read('README.rst'),
license='MIT',
author='Ryan Johnson',
author_email='[email protected]',
url='https://github.com/escattone/txpool',
packages=['txpool'],
install_requires=['twisted>=12'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)