-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.23 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
setup(
name='celery_redis_sync',
version='1.2.0.dev0',
author='Zeit Online',
author_email='zon-backend@zeit.de',
url='https://github.com/zeitonline/celery_redis_sync',
description="Synchronous Redis result store backend",
long_description='\n\n'.join(
open(x).read() for x in ['README.rst', 'CHANGES.txt']),
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='BSD',
install_requires=[
'celery',
'redis',
'setuptools',
],
extras_require={'test': [
'pytest',
'testing.redis',
]},
entry_points={
'celery.result_backends': [
'redis = celery_redis_sync.redis_sync:redis_backend',
'rediss = celery_redis_sync.redis_sync:rediss_backend',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)