flask/setup.py
farooq-bboxx 6b98e96771
Fix werkzeug updating and causing an issue with EnvironBuilder
EnvironBuilder no longer accepts `as_tuple` in 2.1.0 but since we have `>= 2.0` here, it updates without us noticing it and builds fail suddenly
2022-03-29 18:43:32 +05:00

16 lines
380 B
Python

from setuptools import setup
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
setup(
name="Flask",
install_requires=[
"Werkzeug >= 2.0, <2.1",
"Jinja2 >= 3.0",
"itsdangerous >= 2.0",
"click >= 7.1.2",
],
extras_require={
"async": ["asgiref >= 3.2"],
"dotenv": ["python-dotenv"],
},
)