-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (33 loc) · 1.18 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
from distutils.core import setup
with open('README.md') as readme:
__doc__ = readme.read()
setup(
name='django-template-previewer',
version='0.1.3',
description=u'A Django app to allow developers preview templates',
long_description=__doc__,
author=u'Daniel F. Moisset',
author_email='[email protected]',
url='https://github.com/machinalis/django-template-previewer',
packages=['template_previewer', 'template_previewer.template_parser'],
include_package_data=True,
package_data = {
"template_previewer": [
"templates/template_previewer/*.html",
"static/css/template_previewer/*.css",
"static/js/template_previewer/*.js",
"static/js/*.js",
]
}, zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)