-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 987 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 987 Bytes
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
import os
from setuptools import setup, find_packages
version = '0.3.4'
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read()
setup(name='pyramid_openid',
version=version,
url='http://github.com/tomlikestorock/pyramid_openid',
description=('A view for pyramid that functions as an '
'OpenID consumer.'),
long_description=long_description,
classifiers=['Framework :: Pylons',
'Intended Audience :: Developers',
'License :: Repoze Public License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI'],
keywords='pyramid openid',
author='Thomas Hill',
author_email='tomlikestorock@gmail.com',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(),
install_requires=['pyramid', 'python-openid']
)