Skip to content

Commit

Permalink
Merge pull request zmap#53 from rafaelreuber/classifiers
Browse files Browse the repository at this point in the history
Added classifiers
  • Loading branch information
zakird authored May 13, 2020
2 parents 49d5205 + b956d6c commit 6462455
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions setup.py
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",
Expand All @@ -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',
]

)

0 comments on commit 6462455

Please sign in to comment.