-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 1.44 KB
/
setup.py
File metadata and controls
43 lines (36 loc) · 1.44 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
django_maintenance_packages = [
'maintenance',
]
long_description = """
==================
django-maintenance
==================
django-maintenance lets you define maintenance windows as objects. These
maintenance windows are time slots where your website or parts of it is
non-operational. django-maintenance ships with a middleware that lets you
display a friendly message to your users during the downtime.
Installing
==========
Please refer to `INSTALL.markdown` for installation instructions.
Using
=====
Usage instructions can be found in `docs/overview.markdown` which is also
available online. """ + "\n\n" + open('CHANGELOG.txt').read()
setup(name='django-maintenance',
version='0.1',
author='Steingrim Dovland',
author_email='steingrd@ifi.uio.no',
url='http://wiki.github.com/steingrd/django-maintenance',
description='Schedules planned downtime and shuts down your Django site',
long_description=long_description,
packages=django_maintenance_packages,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'])