forked from bbangert/velruse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.54 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
55
56
57
from setuptools import setup, find_packages
requires=[
'python-openid',
'oauth2',
'pyramid',
'requests',
'anykeystore',
]
testing_extras = [
'unittest2',
'nose',
'nose-testconfig',
'selenium',
]
docs_extras = [
'Sphinx',
'docutils',
]
setup(name='velruse',
version='1.0.3',
description=(
'Simplifying third-party authentication for web applications.'),
long_description='',
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Framework :: Pyramid',
],
keywords='oauth openid social auth facebook google pyramid rest',
author='Ben Bangert',
author_email='[email protected]',
maintainer='Michael Merickel',
maintainer_email='[email protected]',
url='http://velruse.readthedocs.org/en/latest/index.html',
packages=find_packages(
exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={
'docs': docs_extras,
'testing': testing_extras,
},
entry_points="""
[paste.app_factory]
main = velruse.app:make_app
""",
)