-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 969 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
26
27
28
29
from os.path import dirname, join
from setuptools import setup, find_packages
version = '0.1.1'
setup(
name = 'proxiedssl',
version = version,
description = "Django Middleware for handling proxied ssl",
long_description = open(join(dirname(__file__), 'README.rst')).read() + "\n" +
open(join(dirname(__file__), 'HISTORY.rst')).read(),
classifiers = [
"Framework :: Django",
"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"],
keywords = 'django middleware proxy fcgi wsgi ssl',
author = 'Benjamin Liles',
author_email = '[email protected]',
url = 'https://github.com/benliles/django-proxiedssl-middleware',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = ['setuptools']
)