-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 1.06 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
#!/usr/bin/env python
import os
from setuptools import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-auth-pubtkt",
version = "2.0.1",
author = "Alexander Vyushkov",
author_email = "[email protected]",
description = "Implementation of mod_auth_pubtkt as Django middleware",
license = "BSD",
keywords = "django auth mod_auth_pubtkt",
url = "https://github.com/Baguage/django-auth-pubtkt",
packages=['django_auth_pubtkt', 'tests'],
long_description=read('README.md'),
install_requires=["six", "M2Crypto", "Django >= 1.11",],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
],
)