-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1023 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
import sys, os
version = '1.0'
setup(name='django-templateloaderwithpriorities',
version=version,
description="A Django Template Loader with priorities",
long_description=open("README.rst").read(),
classifiers=[
"Programming Language :: Python",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
keywords='django template loader',
author='Vincenzo E. Antignano (@qubird)',
author_email='@qubird',
url='https://github.com/qubird/django-templateloaderwithpriorities',
license='GNU General Public License (GPL)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'django>=1.3',
],
entry_points="""
# -*- Entry points: -*-
""",
)