forked from wichert/pyramid_rq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.15 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
from setuptools import setup, find_packages
version = '1.0dev'
install_requires = [
'pyramid >=1.2',
'rq',
]
tests_require = [
'mock',
]
setup(name='pyramid_rq',
version=version,
description='Support using the rq queueing system with pyramid',
long_description=open('README.rst').read() + '\n' +
open('CHANGES.rst').read(),
classifiers=[
'Framework :: Pylons',
'Framework :: Pyramid',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
keywords='pyramid rq redis queueing',
author='Wichert Akkerman',
author_email='wichert@wiggynet',
url='https://github.com/wichert/pyramid_rq/',
license='BSD',
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
test_suite='pyramid_rq'
)