-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
44 lines (42 loc) · 1.22 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
42
43
44
from setuptools import setup
desc = 'A Flask CLI extension to help migrate and manage your SQL database.'
setup(
name='Flask-DB',
version='0.4.1',
author='Nick Janetakis',
author_email='[email protected]',
url='https://github.com/nickjj/flask-db',
description=desc,
license='MIT',
packages=['flask_db'],
setup_requires=['setuptools_scm'],
include_package_data=True,
platforms='any',
python_requires='>=3.6',
zip_safe=False,
install_requires=[
'Flask>=1.0',
'SQLAlchemy>=1.2',
'SQLAlchemy-Utils',
'Flask-SQLAlchemy>=2.4',
'alembic>=1.3',
'setuptools'
],
entry_points={
'flask.commands': [
'db=flask_db.cli:db'
],
},
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'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',
'Topic :: Database'
]
)