-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
25 lines (24 loc) · 850 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
from setuptools import setup, find_packages
setup(
name='django-cronjobs',
version='0.2.3',
description='A simple Django app for running cron jobs.',
long_description=open('README.rst').read(),
author='Mozilla',
author_email='[email protected]',
url='http://github.com/jsocol/django-cronjobs',
license='BSD',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)