flask/setup.py

17 lines
364 B
Python
Raw Normal View History

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=[
"Werkzeug>=2.0",
"Jinja2>=3.0",
"itsdangerous>=2.0",
"click>=7.1.2",
2010-04-16 14:24:12 +02:00
],
extras_require={
"async": ["asgiref>=3.2"],
"dotenv": ["python-dotenv"],
},
2010-04-06 13:23:18 +02:00
)