-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
31 lines (25 loc) · 832 Bytes
/
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
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import setup, find_packages
def fread(fn):
with open(join(dirname(__file__), fn), 'r') as f:
return f.read()
tests_require = ['nose', 'unittest2']
requires = ['oauthlib<=0.5.0']
setup(
name='flask-oauthprovider',
version='0.1.3',
description='A full featured and secure OAuth provider base',
long_description=fread('README.rst'),
author='Ib Lundgren',
author_email='[email protected]',
url='https://github.com/ib-lundgren/flask-oauthprovider',
license=fread('LICENSE'),
py_modules=['flask_oauthprovider'],
test_suite='nose.collector',
tests_require=tests_require,
extras_require={'test': tests_require},
install_requires=requires,
zip_safe=False,
include_package_data=True,
)