python-werkzeug/setup.py

10 lines
249 B
Python
Raw Normal View History

2023-03-14 14:48:50 +08:00
#!/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"]},
)