-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (37 loc) · 1.19 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
from setuptools import setup, find_packages
import os
import sys
requires = [
'pyramid',
'requests',
'setuptools',
]
if sys.version_info[:2] < (2, 7):
requires.append('unittest2')
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(
name='pyramid_oauth2_client',
version='0.1',
description='Library for authenticating Pyramid apps using OAuth2',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
],
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
author='Shane Hathaway',
author_email='[email protected]',
url='https://github.com/hathawsh/pyramid_oauth2_client',
keywords='web pylons pyramid oauth oauth2 facebook yasso',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
test_suite='pyramid_oauth2_client',
install_requires=requires,
)