forked from djcoin/repoze.who.plugins.cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.92 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import sys
from setuptools import setup, find_packages
version= '0.1.1'
name='repoze.who.plugins.cas'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
INSTALL = open(os.path.join(here, 'INSTALL.txt')).read()
TODO = open(os.path.join(here, 'TODO.txt')).read()
ISSUES = open(os.path.join(here, 'ISSUES.txt')).read()
CHANGELOG = open(os.path.join(here, 'CHANGELOG.txt')).read()
setup(name=name,
version=version,
description='CAS plugin for repoze.who by Makina Corpus',
long_description='\n\n'.join([README, INSTALL, TODO, ISSUES, CHANGELOG]),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: System :: Systems Administration :: Authentication/Directory'
],
keywords='cas authentication server web wsgi repoze repoze.who sponsorised by Makina Corpus',
author='Simon Thepot, Mathieu Pasquet',
author_email='[email protected], [email protected]',
#url = 'http://cheeseshop.python.org/pypi/%s' % name,
url = 'http://github.com/kiorky/repoze.who.plugins.cas/',
license = 'BSD',
namespace_packages=['repoze', 'repoze.who', 'repoze.who.plugins',
'repoze.who.plugins.cas'],
include_package_data=True,
zip_safe=False,
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires=[
'repoze.who>=1.0',
],
extras_require={'test': ['ipython',
'zope.testing',
'PasteDeploy',
],
},
)