forked from hudora/django-googleappsauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 722 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import codecs
from setuptools import setup, find_packages
setup(name='googleappsauth',
maintainer='Maximillian Dornseif',
maintainer_email='md@hudora.de',
version='1.1',
description='googleappsauth authenticates Django Users against a Google Apps Domain',
long_description=codecs.open('README.rst', "r", "utf-8").read(),
license='BSD',
url='http://github.com/hudora/django-googleappsauth#readme',
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python'],
package_data={"googleappsauth": ["templates/googleappsauth/*.html",]},
packages = find_packages(),
install_requires = ['Django'],
zip_safe = False,
)