forked from sontek/pyramid_celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.63 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
41
42
43
44
45
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['pyramid', 'celery']
if sys.version_info < (2, 7):
requires.append('argparse')
setup(name='pyramid_celery',
version='1.2',
description='Celery integration with pyramid',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Development Status :: 4 - Beta',
'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'
],
author='John Anderson',
author_email='[email protected]',
url='https://github.com/sontek/pyramid_celery',
keywords='paste pyramid celery message queue amqp job task distributed',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires + ['pytest', 'mock'],
test_suite="pyramid_celery",
entry_points = """\
[console_scripts]
pceleryd = pyramid_celery.commands.celeryd:main
pceleryctl = pyramid_celery.commands.celeryctl:main
pcelerybeat = pyramid_celery.commands.celerybeat:main
pceleryev = pyramid_celery.commands.celeryev:main
""",
)