-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (25 loc) · 838 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
import os
from setuptools import setup, find_packages
version = '0.2.1'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-assume',
version = version,
description = "Django app that allows administrators to log in to user " \
"accounts without having to provide a password",
long_description = read('README.rst'),
classifiers = [],
keywords = "",
author = "Bryan Chow",
author_email = '',
url = 'https://github.com/bryanchow/django-assume',
download_url = 'https://github.com/bryanchow/django-assume/tarball/master',
license = "WTFPL",
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data = True,
zip_safe = False,
install_requires = [
'django',
],
)