summaryrefslogtreecommitdiff
path: root/setup.py
blob: 00c1f5d1a8cc5014b2b91f5aa8d4e965d7205453 (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>=1.1"],
    extras_require={"i18n": ["Babel>=2.1"]},
)