This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
setup.py
61 lines (56 loc) · 1.71 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
"""
Flask-Social
============
Oauth provider login and APIs for use with
`Flask-Security <http://packages.python.org/Flask-Security/>`_
Resources
---------
- `Documentation <http://packages.python.org/Flask-Social/>`_
- `Issue Tracker <http://github.com/mattupstate/flask-social/issues>`_
- `Code <http://github.com/mattupstate/flask-social/>`_
- `Development Version
<http://github.com/mattupstate/flask-rq/zipball/develop#egg=Flask-Social-dev>`_
"""
from setuptools import setup
setup(
name='Flask-Social',
version='1.6.2',
url='https://github.com/mattupstate/flask-social',
license='MIT',
author='Matthew Wright',
author_email='[email protected]',
description='Simple OAuth provider integration for Flask-Security',
long_description=__doc__,
packages=[
'flask_social',
'flask_social.providers'
],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask-Security>=1.6.9',
'Flask-OAuthlib==0.5.0'
],
test_suite='nose.collector',
tests_require=[
'nose',
'mock',
'Flask-SQLAlchemy',
'Flask-MongoEngine',
'Flask-Peewee'
],
dependency_links=[
'http://github.com/mattupstate/flask-security/tarball/develop#egg=Flask-Security-1.3.0-dev'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)