-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (44 loc) · 1.67 KB
/
setup.py
File metadata and controls
54 lines (44 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
from os.path import abspath, dirname, join, normpath
from setuptools import setup
from sslifyadmin import __version__
setup(
# Basic package information:
name='django-sslify-admin',
version=__version__,
packages=('sslifyadmin',),
# Packaging options:
zip_safe=False,
include_package_data=True,
# Package dependencies:
install_requires=['Django>=1.2'],
# Metadata for PyPI:
author='Dominique Lederer',
author_email='[email protected]',
license='mit',
url='https://github.com/return1/django-sslify-admin',
keywords='django ssl https middleware admin',
description='Force SSL on your Django admin site.',
long_description=open(normpath(join(dirname(abspath(__file__)),
'README.rst'))).read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Python Modules',
"Framework :: Django",
],
tests_require=(
'django',
),
test_suite='runtests.runtests',
)