-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (27 loc) · 1.2 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
from setuptools import setup, find_packages
setup(
name = "django-template-preprocessor",
url = 'https://github.com/citylive/django-template-preprocessor',
license = 'BSD',
description = "Template preprocessor/compiler for Django",
long_description = open('README.rst','r').read(),
author = 'Jonathan Slenders, City Live nv',
packages = ['template_preprocessor'], #find_packages('src', exclude=['*.test_project', 'test_project', 'test_project.*', '*.test_project.*']),
package_dir = {'': 'src'},
package_data = {'template_preprocessor': [
'templates/*.html', 'templates/*/*.html', 'templates/*/*/*.html',
'static/*/js/*.js', 'static/*/css/*.css',
],},
include_package_data=True,
zip_safe=False, # Don't create egg files, Django cannot find templates in egg files.
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Software Development :: Internationalization',
],
)