mirror of
https://gitee.com/openharmony/third_party_jinja2
synced 2024-12-02 20:47:38 +00:00
9 lines
221 B
Python
9 lines
221 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>=1.1"],
|
|
extras_require={"i18n": ["Babel>=2.1"]},
|
|
)
|