forked from alsoicode/django-maintenancemode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
setup(
author='Brandon Taylor',
author_email='[email protected]',
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
description='Database-driven way to put your Django site into maintenance mode.',
include_package_data=True,
install_requires=['django'],
license='APL',
long_description=README,
name='django-maintenancemode-2',
packages=find_packages(exclude=['testproject']),
url='https://github.com/alsoicode/django-maintenancemode-2',
version=__import__('maintenancemode').__version__,
zip_safe=False
)