-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
40 lines (38 loc) · 1.04 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
40
import re
import setuptools
setuptools.setup(
name='pika-pool',
version=(
re
.compile(r".*__version__ = '(.*?)'", re.S)
.match(open('pika_pool.py').read())
.group(1)
),
url='https://github.com/bninja/pika-pool',
license='BSD',
author='egon',
author_email='[email protected]',
description='Pools for pikas.',
long_description=open('README.rst').read(),
py_modules=['pika_pool'],
include_package_data=True,
platforms='any',
install_requires=[
'pika >=0.9,<0.11',
],
extras_require={
'tests': [
'pytest >=2.5.2,<3',
'pytest-cov >=1.7,<2',
],
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)