mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-02-14 18:59:05 -06:00
Update version number and package data
This commit is contained in:
9
setup.py
9
setup.py
@@ -3,17 +3,22 @@ from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='Flask-DebugToolbar',
|
||||
version='0.4.2',
|
||||
version='0.4.4',
|
||||
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__,
|
||||
packages=find_packages(),
|
||||
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',
|
||||
'Flask',
|
||||
|
||||
Reference in New Issue
Block a user