-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (31 loc) · 993 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
32
33
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-template-repl',
version='0.3.0',
description="A readline shell for the Django template language.",
long_description=read('README'),
author='Cody Soyland',
author_email='codysoyland@gmail.com',
license='BSD',
url='http://github.com/codysoyland/django-template-repl/',
package_dir = {'': 'src'},
packages=[
'template_repl',
'template_repl.templatetags',
'template_repl.management',
'template_repl.management.commands',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)