mirror of https://gitee.com/openkylin/jinja2.git
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>=2.0"],
|
||
|
extras_require={"i18n": ["Babel>=2.7"]},
|
||
|
)
|