mirror of
https://github.com/kennethreitz/flask-googlefed.git
synced 2026-06-05 15:00:19 +00:00
32 lines
928 B
Python
Executable File
32 lines
928 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='Flask-GoogleFed',
|
|
version='0.1',
|
|
url='https://github.com/kennethreitz/flask-googlefed',
|
|
license='BSD',
|
|
author='Kennneth Reitz',
|
|
author_email='me@kennethreitz.com',
|
|
description='Google Federated Logins for Flask.',
|
|
long_description=open('README.rst', 'r').read(),
|
|
py_modules=['flask_googlefed'],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
platforms='any',
|
|
install_requires=[
|
|
'Flask',
|
|
'Flask-OpenID==1.1.1'
|
|
],
|
|
classifiers=[
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
]
|
|
)
|