forked from bbangert/velruse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (71 loc) · 2.15 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import os.path
import sys
from setuptools import setup, find_packages
PY3 = sys.version_info[0] >= 3
requires = [
'pyramid',
'requests',
'requests-oauthlib',
'anykeystore',
]
if PY3:
requires.append('python3-openid')
else:
requires.append('python-openid')
testing_extras = [
'nose',
'selenium',
'webtest',
]
docs_extras = [
'Sphinx',
'docutils',
]
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()
except IOError:
README = CHANGES = ''
setup(name='velruse',
version='1.1.1',
description=(
'Simplifying third-party authentication for web applications.'),
long_description=README + '\n\n' + CHANGES,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
'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,
tests_require=testing_extras,
test_suite='nose.collector',
extras_require={
'docs': docs_extras,
'testing': testing_extras,
},
entry_points="""
[paste.app_factory]
main = velruse.app:make_app
""",
)