forked from michaelgodshall/django-maintenancemode
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 1.16 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
import os
from distutils.core import setup
version = '0.9.3a1'
def read_file(name):
return open(os.path.join(os.path.dirname(__file__),
name)).read()
readme = read_file('README.rst')
changes = read_file('CHANGES')
setup(
name='django-maintenancemode',
version=version,
description='Django-maintenancemode allows you to temporary shutdown your site for maintenance work',
long_description='\n\n'.join([readme, changes]),
author='Remco Wendt',
author_email='[email protected]',
license = "BSD",
platforms = ["any"],
url='http://code.google.com/p/django-maintenancemode/',
packages=[
'maintenancemode',
'maintenancemode.conf',
'maintenancemode.conf.urls',
'maintenancemode.views'
],
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',
'Topic :: Utilities',
],
)