forked from miguelgrinberg/Flask-Migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Flask-Migrate
--------------
SQLAlchemy database migrations for Flask applications using Alembic.
"""
from setuptools import setup
setup(
name='Flask-Migrate',
version='1.4.0',
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.6',
'Flask-Script>=0.6'
],
test_suite="tests",
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)