forked from mixkorshun/celery-beatx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 967 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
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='celery-beatx',
version='0.4.1a1',
url='https://github.com/mixkorshun/celery-beatx',
description='Modern fail-safe schedule for Celery',
keywords=['celery', 'celery-beat', 'scheduler'],
long_description=open('README.rst', 'r').read(),
author='Vladislav Bakin',
author_email='[email protected]',
license='MIT',
install_requires=[
'celery',
],
packages=find_packages(exclude=['beatx.tests.*', 'beatx.tests']),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)