-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 714 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 714 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
dependencies = [
'flask',
'click',
'Flask',
'inquirer',
# 'sqlite3',
'flask_migrate',
'flask_sqlalchemy',
# 'mysql-connector-python',
# 'psycopg2',
# 'pymongo',
]
setup(
name='flask-wiz',
version='1.9.9.3',
author='Krish Soni',
packages=find_packages(),
include_package_data=True,
install_requires=dependencies,
entry_points={
'console_scripts': [
'flask-wiz=flask_wiz.cli:cli',
],
},
long_description=long_description,
long_description_content_type="text/markdown",
)