-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 742 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name="django-jinja2",
version=__import__("django_jinja2").__version__,
description="A drop in conditional template loader to use jinja2 if the filename / path meets custom criteria",
long_description='',
author="Yuji Tomita",
author_email="yuji@yujitomita.com",
url="https://github.com/yuchant/django-jinja2",
packages=[
"django_jinja2",
"django_jinja2.loaders",
],
package_dir={"django_jinja2": "django_jinja2"},
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)