2015-01-19 07:10:03 +00:00
|
|
|
"""
|
|
|
|
Flask-Micropub
|
|
|
|
--------------
|
|
|
|
|
|
|
|
This extension adds the ability to login to a Flask-based website
|
2015-02-07 17:40:31 +00:00
|
|
|
using IndieAuth (https://indiewebcamp.com/IndieAuth), and to request
|
|
|
|
a Micropub (https://indiewebcamp.com/Micropub) access token.
|
2015-01-19 07:10:03 +00:00
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Flask-Micropub',
|
2016-03-18 18:34:04 +00:00
|
|
|
version='0.2.7',
|
2015-01-19 17:44:56 +00:00
|
|
|
url='https://github.com/kylewm/flask-micropub/',
|
2015-01-19 07:10:03 +00:00
|
|
|
license='BSD',
|
|
|
|
author='Kyle Mahan',
|
|
|
|
author_email='kyle@kylewm.com',
|
|
|
|
description='Adds support for Micropub clients.',
|
|
|
|
long_description=__doc__,
|
|
|
|
py_modules=['flask_micropub'],
|
|
|
|
zip_safe=False,
|
|
|
|
include_package_data=True,
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
|
|
|
'Flask',
|
|
|
|
'requests',
|
|
|
|
'BeautifulSoup4',
|
|
|
|
],
|
2016-03-18 19:36:55 +00:00
|
|
|
tests_require=[
|
|
|
|
'tox',
|
|
|
|
'mock',
|
|
|
|
],
|
2015-01-19 07:10:03 +00:00
|
|
|
classifiers=[
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
2015-01-19 17:44:56 +00:00
|
|
|
'Development Status :: 3 - Alpha',
|
2015-01-19 07:10:03 +00:00
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
]
|
|
|
|
)
|