flask/setup.py
Suzan-Tulinde 284f09cdb8 Defined constants to reduce duplication
"localtoc.html" and "ethicalads.html" were repeated 3 times. Defined constants to reduce code duplication.
2022-04-01 13:53:07 +03:00

17 lines
436 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",
"Jinja2 >= 3.0",
"itsdangerous >= 2.0",
"click >= 8.0",
"importlib-metadata >= 3.6.0; python_version < '3.10'",
],
extras_require={
"async": ["asgiref >= 3.2"],
"dotenv": ["python-dotenv"],
},
)