File: setup.py

package info (click to toggle)
python-pika-pool 0.1.3-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 92 kB
  • sloc: python: 384; makefile: 31
file content (40 lines) | stat: -rw-r--r-- 1,062 bytes parent folder | download | duplicates (4)
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='egon@gb.com',
    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'
    ]
)