mirror of https://github.com/pallets/flask.git
18 lines
427 B
Python
18 lines
427 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; python_version < '3.10'",
|
|
],
|
|
extras_require={
|
|
"async": ["asgiref >= 3.2"],
|
|
"dotenv": ["python-dotenv"],
|
|
},
|
|
)
|