forked from AndreyPlotnikov/auth_pubtkt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.18 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
37
from setuptools import setup, find_packages
import sys, os
version = '0.2'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='auth_pubtkt',
version=version,
description="This software implements mod_auth_pubtkt authentication for Python world.",
long_description=read('README.txt'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware'
],
keywords='mod_auth_pubtkt authentication single-sing-on',
author='Andrey Plotnikov',
author_email='plotnikoff@gmail.com',
url='https://github.com/AndreyPlotnikov/auth_pubtkt',
license='BSD License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
[paste.app_factory]
authrequest = auth_pubtkt.authrequest:make_app
""",
)