-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.16 KB
/
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
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README.md file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name="django-membersuite-auth",
version="2.6",
description="Django Authentication By MemberSuite",
author=("Association for the Advancement of Sustainability in "
"Higher Education"),
author_email="[email protected]",
url="https://github.com/AASHE/django-membersuite-auth",
long_description=read("README.md"),
packages=[
"django_membersuite_auth",
"django_membersuite_auth.migrations"
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Framework :: Django"
],
include_package_data=True,
install_requires=["future",
"membersuite-api-client==1.1.4"
]
) # noqa what's visual indentation?