-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (19 loc) · 801 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
#!/usr/bin/env python
#
# The Template-Python distribution is Copyright (C) Sean McAfee 2007-2008,
# derived from the Perl Template Toolkit Copyright (C) 1996-2007 Andy
# Wardley. All Rights Reserved.
#
# The file "LICENSE" at the top level of this source distribution describes
# the terms under which this file may be distributed.
#
from distutils.core import setup
setup(name='Template-Toolkit-Python',
version='0.2',
description='Python port of the Template Toolkit',
author='Sean McAfee',
author_email='[email protected]',
url='http://template-toolkit.org/python/',
packages=['template', 'template.plugin', 'template.namespace'],
package_dir={'template.plugin': 'template/plugin',
'template.namespace': 'template/namespace'})