-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.11 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-command-scheduler',
description='Runs your Django management commands via cron and gives you '
'some success and log infos in admin.',
version='0.1.0',
author='Lars Kreisz',
author_email='[email protected]',
license='MIT',
url='https://github.com/kraiz/django-command-scheduler',
long_description=open('README.rst').read(),
packages=[
'command_scheduler',
'command_scheduler.management',
'command_scheduler.management.commands'
],
install_requires=[
'Django',
'croniter>=0.3.3'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Installation/Setup'
]
)