-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (30 loc) · 1.03 KB
/
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
from setuptools import setup
import sys
long_description = 'nopandoc'
if 'bdist_wheel' in sys.argv:
from pypandoc import convert
long_description = convert('README.md', 'rst')
setup(
name='gevent-pipeline',
packages=['gevent_pipeline'],
use_scm_version=True,
setup_requires=['setuptools_scm', 'pytest-runner'],
install_requires=['gevent'],
tests_require=['pytest'],
description='Multi-worker pipeline and closable queue',
long_description=long_description,
url='https://github.com/simonschmidt/gevent-pipeline',
author='Simon Schmidt',
author_email='schmidt.simon@gmail.com',
# Choose your license
license='ISC',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='gevent pipelines chaining closablequeue',
)