comparison setup.py @ 0:3679d2d8443a

Import from CVS and goto mez_xml-0.4
author Thinker K.F. Li <thinker@branda.to>
date Wed, 13 Feb 2008 22:33:51 +0800
parents
children c6db338d2d64
comparison
equal deleted inserted replaced
-1:000000000000 0:3679d2d8443a
1 from distutils.core import setup
2
3 setup(name='mez_xml',
4 version='0.4',
5 description='A template engine.',
6 long_description='''
7 mez_xm is a template engine.
8 It generates a Python template module for a XML or XHTML file.''',
9 author='Thinker K.F. Li',
10 author_email='thinker@branda.to',
11 url='https://trac-hg.assembla.com/mez_xml/',
12 packages=['mez_xml'],
13 package_dir={'mez_xml': '.'},
14 classifiers=['License :: OSI Approved :: BSD License',
15 'Programming Language :: Python',
16 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
17 'Topic :: Software Development :: Libraries'],
18 license='BSD'
19 )