13 lines
317 B
Python
13 lines
317 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>=0.15",
|
|
"Jinja2>=2.10.1",
|
|
"itsdangerous>=0.24",
|
|
"click>=5.1",
|
|
],
|
|
extras_require={"dotenv": ["python-dotenv"]},
|
|
)
|