view setup.py @ 5:d310e097c6de tip

Replace & with &
author Thinker K.F. Li <thinker@codemud.net>
date Sun, 02 Feb 2014 22:12:15 +0800
parents c6db338d2d64
children
line wrap: on
line source

from distutils.core import setup

setup(name='mez_xml',
      version='0.4',
      description='A template engine.',
      long_description='''
      mez_xml is a template engine.
      It generates a Python template module for a XML or XHTML file.''',
      author='Thinker K.F. Li',
      author_email='thinker@branda.to',
      url='https://trac-hg.assembla.com/mez_xml/',
      packages=['mez_xml'],
      package_dir={'mez_xml': '.'},
      classifiers=['License :: OSI Approved :: BSD License',
                   'Programming Language :: Python',
		   'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
		   'Topic :: Software Development :: Libraries'],
      license='BSD'
)