-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
45 lines (36 loc) · 1.31 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""Setup script for django-app-namespace-template-loader"""
import os
from setuptools import find_packages
from setuptools import setup
__version__ = '0.4.1'
__license__ = 'BSD License'
__author__ = 'Fantomas42'
__email__ = '[email protected]'
__url__ = 'https://github.com/Fantomas42/django-app-namespace-template-loader'
setup(
name='django-app-namespace-template-loader',
version=__version__,
zip_safe=False,
packages=find_packages(exclude=['tests']),
include_package_data=True,
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
platforms='any',
description='Template loader allowing you to both '
'extend and override a template at the same time. ',
long_description=open(os.path.join('README.rst')).read(),
keywords='django, template, loader',
classifiers=[
'Framework :: Django',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=['six']
)