10 lines
249 B
Python
10 lines
249 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup
|
||
|
|
||
|
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
|
||
|
setup(
|
||
|
name="Werkzeug",
|
||
|
install_requires=["MarkupSafe>=2.1.1"],
|
||
|
extras_require={"watchdog": ["watchdog"]},
|
||
|
)
|