-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 804 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
import codecs
import os
import re
from distutils.core import setup
version = '0.0.0' # stub for lint
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'aioworkerpool', '__init__.py'), 'r', 'latin1') as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'\r?$",
fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to determine version.')
setup(
name='aioworkerpool',
version=version,
packages=['aioworkerpool'],
url='https://github.com/tumb1er/aioworkerpool',
license='Beer license',
author='Tumbler',
author_email='[email protected]',
description='Asynchronous master/worker for asyncio',
install_requires=[
'python-daemon',
'tblib',
]
)