forked from adamcharnock/django-su
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (25 loc) · 833 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
30
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-su',
version="0.2",
description="Login as any user from the Django admin interface, then switch back when done",
author="Adam Charnock",
author_email="[email protected]",
url="https://github.com/continuous/django-su",
license="Apache Software License",
install_requires=["django"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2.6",
"Topic :: Security",
"Framework :: Django",
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
)