mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-01 11:10:32 -06:00
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='Flask-DebugToolbar',
|
|
version='0.5',
|
|
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',
|
|
packages=find_packages(exclude=['ez_setup']),
|
|
package_data={'flaskext.debugtoolbar': [
|
|
'static/css/*.css', 'static/js/*.js', 'static/img/*',
|
|
'templates/*.html', 'templates/panels/*.html'
|
|
]},
|
|
|
|
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'
|
|
]
|
|
)
|
|
|