forked from Tivix/django-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.18 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
41
42
43
44
#!/usr/bin/env python
# flake8: noqa
try:
from setuptools import setup, find_packages
from setuptools.command.test import test
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools.command.test import test
import os
here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.rst'))
long_description = f.read().strip()
f.close()
setup(
name='django-cron',
version='0.5.1',
author='Sumit Chachra',
author_email='chachra@tivix.com',
url='http://github.com/tivix/django-cron',
description='Running python crons in a Django project',
packages=find_packages(),
long_description=long_description,
keywords='django cron',
zip_safe=False,
install_requires=[
'Django>=1.8.0',
'django-common-helpers>=0.6.4'
],
test_suite='runtests.runtests',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
]
)