forked from bbangert/openid-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 871 Bytes
/
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
from setuptools import setup, find_packages
import sys, os
version = '1.1'
setup(name='openid-redis',
version=version,
description="A Redis storage backend for the python-openid package",
long_description="""\
""",
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP"
],
keywords='openid redis',
author='Ben Bangert',
author_email='[email protected]',
url='http://github.com/bbangert/openid-redis',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=["redis>=2.4.0", "python-openid>=2.2.5"],
entry_points="""
# -*- Entry points: -*-
""",
)