-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1009 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 1009 Bytes
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='2.0.3',
description='A persistent process pool in Python for Twisted',
long_description=read('README.rst'),
license='MIT',
author='Ryan Johnson',
author_email='escattone@gmail.com',
url='https://github.com/escattone/txpool',
packages=['txpool', 'txpool.tests'],
install_requires=['twisted>=12', 'mock'],
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: 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',
]
)