SIGN IN SIGN UP
pallets / flask UNCLAIMED

The Python micro framework for building web applications.

0 0 0 Python
2015-02-06 18:06:16 +01:00
from setuptools import setup
2020-04-04 14:36:09 -07:00
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
2010-04-06 13:23:18 +02:00
setup(
name="Flask",
install_requires=[
2022-08-08 16:14:00 -07:00
"Werkzeug >= 2.2.2",
2021-05-13 16:34:58 -07:00
"Jinja2 >= 3.0",
"itsdangerous >= 2.0",
2021-05-13 16:36:10 -07:00
"click >= 8.0",
2022-03-30 14:10:12 -07:00
"importlib-metadata >= 3.6.0; python_version < '3.10'",
2010-04-16 14:24:12 +02:00
],
extras_require={
2021-05-13 16:34:58 -07:00
"async": ["asgiref >= 3.2"],
"dotenv": ["python-dotenv"],
},
2010-04-06 13:23:18 +02:00
)