mirror of
https://gitee.com/openharmony/third_party_jinja2
synced 2024-11-30 19:01:27 +00:00
9 lines
226 B
Python
9 lines
226 B
Python
from setuptools import setup
|
|
|
|
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
|
|
setup(
|
|
name="Jinja2",
|
|
install_requires=["MarkupSafe>=2.0.0rc2"],
|
|
extras_require={"i18n": ["Babel>=2.7"]},
|
|
)
|