-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 845 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='Flask-SQL-Pro',
version='4.7',
description='Based on Flask-SQLAlchemy, extract SQL statements, use Jinja2 syntax to achieve dynamic SQL, support contextual transactions, support paging',
long_description=open('README.rst').read(),
author='miaokela',
author_email='[email protected]',
maintainer='miaokela',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask',
'flask_sqlalchemy',
'pyyaml',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)