-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (36 loc) · 1.54 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
from setuptools import setup, find_packages
version = '1.1.2'
setup(name='django-downtime',
version=version,
description="Give your site a down page, or redirect to another error page.",
long_description=open("README.md", "r").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords='',
author='Derek Stegelman',
author_email='dstegelman@gmail.com',
url='http://github.com/dstegelman/django-downtime',
license='MIT',
packages=find_packages(),
install_requires=[],
include_package_data=True,
zip_safe=False,
)