-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
29 lines (27 loc) · 1015 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
name='celery-redundant-scheduler',
version='0.0.1',
description='Celery beat scheduler with redundency',
author='Mikhail Antonov',
author_email='[email protected]',
long_description=open('README.md').read(),
url='https://github.com/MnogoByte/celery-redundant-scheduler',
packages=find_packages(),
install_requires=["celery>=3.1"],
keywords=['celery', 'celerybeat', 'scheduler', 'failover', 'redundancy'],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
],
license="BSD"
)