-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4e6043
commit 074cbc9
Showing
17 changed files
with
52 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
include __version__ README.md LICENSE flask_migrate/templates/flask/* \ | ||
flask_migrate/templates/flask-multidb/* tests/* | ||
|
||
include README.md | ||
include LICENSE | ||
include src/flask_migrate/templates/flask/* | ||
include src/flask_migrate/templates/flask-multidb/* | ||
include tests/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[metadata] | ||
name = Flask-Migrate | ||
version = 3.0.2.dev0 | ||
author = Miguel Grinberg | ||
author_email = miguel.grinberg@gmail.com | ||
description = SQLAlchemy database migrations for Flask applications using Alembic. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/miguelgrinberg/flask-migrate | ||
project_urls = | ||
Bug Tracker = https://github.com/miguelgrinberg/flask-migrate/issues | ||
classifiers = | ||
Environment :: Web Environment | ||
Intended Audience :: Developers | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
package_dir = | ||
= src | ||
packages = find: | ||
python_requires = >=3.6 | ||
install_requires = | ||
Flask >= 0.9 | ||
Flask-SQLAlchemy >= 1.0 | ||
alembic >= 0.7 | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
[options.entry_points] | ||
flask.commands = | ||
db = flask_migrate.cli:db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,3 @@ | ||
""" | ||
Flask-Migrate | ||
-------------- | ||
import setuptools | ||
|
||
SQLAlchemy database migrations for Flask applications using Alembic. | ||
""" | ||
from setuptools import setup | ||
|
||
|
||
VERSION = open('__version__').read().strip() | ||
|
||
setup( | ||
name='Flask-Migrate', | ||
version=VERSION, | ||
url='http://github.com/miguelgrinberg/flask-migrate/', | ||
license='MIT', | ||
author='Miguel Grinberg', | ||
author_email='miguelgrinberg50@gmail.com', | ||
description=('SQLAlchemy database migrations for Flask applications ' | ||
'using Alembic'), | ||
long_description=__doc__, | ||
packages=['flask_migrate'], | ||
zip_safe=False, | ||
include_package_data=True, | ||
platforms='any', | ||
install_requires=[ | ||
'Flask>=0.9', | ||
'Flask-SQLAlchemy>=1.0', | ||
'alembic>=0.7' | ||
], | ||
entry_points={ | ||
'flask.commands': [ | ||
'db=flask_migrate.cli:db' | ||
], | ||
}, | ||
classifiers=[ | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
] | ||
) | ||
setuptools.setup() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters