-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
48 lines (43 loc) · 1.39 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'pyramid_tm',
'pyramid_debugtoolbar',
'six==1.10.0',
'zope.sqlalchemy',
'zope.interface',
'waitress',
'cryptography'
]
setup(name='pyramid_oauth2_provider',
version='0.2',
description='Oauth2 endpoint for pyramid applications',
long_description=README,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Elliot Peele',
author_email='[email protected]',
url='http://github.com/elliotpeele/pyramid_oauth2_provider',
keywords='web wsgi bfg pylons pyramid oauth2',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='pyramid_oauth2_provider',
install_requires=requires,
entry_points="""\
[paste.app_factory]
main = pyramid_oauth2_provider:main
[console_scripts]
initialize_pyramid_oauth2_provider_db = pyramid_oauth2_provider.scripts.initializedb:main
create_client_credentials=pyramid_oauth2_provider.scripts.create_client_credentials:main
""",
)