forked from zmap/celerybeat-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request zmap#53 from rafaelreuber/classifiers
Added classifiers
- Loading branch information
Showing
1 changed file
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name="celerybeat-mongo", | ||
description="A Celery Beat Scheduler that uses MongoDB to store both schedule definitions and status information", | ||
|
@@ -9,18 +10,30 @@ | |
author_email="[email protected]", | ||
maintainer="Zakir Durumeric", | ||
maintainer_email="[email protected]", | ||
|
||
keywords="python celery beat mongo", | ||
|
||
keywords="python celery beat periodic task mongodb", | ||
packages=[ | ||
"celerybeatmongo" | ||
], | ||
|
||
install_requires=[ | ||
'setuptools', | ||
'pymongo', | ||
'mongoengine', | ||
'celery', | ||
], | ||
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', | ||
] | ||
|
||
) |