forked from splunk/celerybeat-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.33 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
from setuptools import setup
setup(
name="celerybeat-mongo",
description="A Celery Beat Scheduler that uses MongoDB to store both schedule definitions and status information",
version="0.2.2",
license="Apache License, Version 2.0",
author="Zakir Durumeric",
author_email="[email protected]",
maintainer="Zakir Durumeric",
maintainer_email="[email protected]",
keywords="python celery beat periodic task mongodb",
packages=[
"celerybeatmongo"
],
install_requires=[
'setuptools',
'pymongo',
'mongoengine',
'celery',
'blinker'
],
classifiers=[
'Development Status :: 2 - Production/Stable',
'License :: Apache License 2.0',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
]
)