summaryrefslogtreecommitdiff
path: root/setup.py
blob: 79d070870023ba5ad4ab998a30c0966c63f10f61 (plain)
1
2
3
4
5
6
7
8
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"]},
)