flask/setup.py

17 lines
374 B
Python
Raw Normal View History

2015-02-07 01:06:16 +08:00
from setuptools import setup
2020-04-05 05:36:09 +08:00
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
2010-04-06 19:23:18 +08:00
setup(
name="Flask",
install_requires=[
2021-05-14 07:34:58 +08:00
"Werkzeug >= 2.0",
"Jinja2 >= 3.0",
"itsdangerous >= 2.0",
"click >= 7.1.2",
2010-04-16 20:24:12 +08:00
],
extras_require={
2021-05-14 07:34:58 +08:00
"async": ["asgiref >= 3.2"],
"dotenv": ["python-dotenv"],
},
2010-04-06 19:23:18 +08:00
)