forked from bbangert/velruse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.35 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
from setuptools import setup, find_packages
requires=[
'python-openid',
'oauth2',
'pyramid',
'requests',
'anykeystore',
]
tests_require = requires + [
'nose',
'nose-testconfig',
'selenium',
]
setup(name='velruse',
version='0.3dev',
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',
],
keywords='',
author='Ben Bangert',
author_email='[email protected]',
maintainer='Michael Merickel',
maintainer_email='[email protected]',
url='velruse.readthedocs.org',
packages=find_packages(
exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={
'testing': tests_require,
},
entry_points="""
[paste.app_factory]
main = velruse.app:make_velruse_app
""",
)