mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-03 04:00:03 -06:00
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='Flask-DebugToolbar',
|
|
version='0.5.1dev',
|
|
url='http://github.com/mvantellingen/flask-debugtoolbar',
|
|
license='BSD',
|
|
author='Michael van Tellingen',
|
|
author_email='michaelvantellingen@gmail.com',
|
|
description='A port of the Django debug toolbar to Flask',
|
|
long_description=__doc__,
|
|
namespace_packages=['flaskext'],
|
|
zip_safe=False,
|
|
platforms='any',
|
|
include_package_data=True,
|
|
packages=['flaskext.debugtoolbar'],
|
|
install_requires=[
|
|
'setuptools',
|
|
'simplejson',
|
|
'Flask',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'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'
|
|
]
|
|
)
|
|
|