annotate setup.py @ 3:f181a1ba4f9f

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