-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 916 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
import sys,setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="flask_man",
version="1.1.8",
author="AlaBouali",
author_email="[email protected]",
description="Flask module to auto setup and manage the project and its configurations (app code, templates, databases...)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AlaBouali/flask_man",
python_requires=">=2.7",
install_requires=["flask","pymysql","cryptography","sanitizy","psycopg2","pyodbc","cx_Oracle","Flask-SQLAlchemy"],
packages=["flask_man"],
entry_points={ 'console_scripts': ['flask_man = flask_man.__main__:main' ] },
license="MIT License",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License ",
],
)