-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (24 loc) · 895 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
34
35
36
37
38
39
#!/usr/bin/env python
import setuptools
setuptools.setup(
name='coworker',
version='2.0.2',
author='Max Zheng',
author_email='maxzheng.os @t gmail.com',
description='Generic worker that performs concurrent tasks using coroutine.',
long_description=open('README.rst').read(),
url='https://github.com/maxzheng/coworker',
install_requires=open('requirements.txt').read(),
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
setup_requires=['setuptools-git', 'wheel'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='coroutine concurrent worker',
)