Skip to content

Commit

Permalink
setup fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Grinberg committed Sep 10, 2013
1 parent 5006924 commit c366484
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.md LICENSE templates
include README.md LICENSE flask_migrate/templates/flask/*

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@

setup(
name='Flask-Migrate',
version='0.1.0',
version='0.1.1',
url='http://github.com/miguelgrinberg/flask-migrate/',
license='MIT',
author='Miguel Grinberg',
author_email='[email protected]',
description='SQLAlchemy database migrations for Flask applications using Alembic',
long_description=__doc__,
py_modules=['flask_migrate'],
packages=['flask_migrate'],
zip_safe=False,
data_files=[('templates/flask', ['templates/flask/alembic.ini.mako', 'templates/flask/env.py', 'templates/flask/README', 'templates/flask/script.py.mako'])],
data_files=[('flask_migrate/templates/flask', ['flask_migrate/templates/flask/alembic.ini.mako', 'flask_migrate/templates/flask/env.py', 'flask_migrate/templates/flask/README', 'flask_migrate/templates/flask/script.py.mako'])],
include_package_data=True,
platforms='any',
install_requires=[
Expand Down

0 comments on commit c366484

Please sign in to comment.