view setup.py @ 584:9bdf5ae63d1f

[PATCH 2] ChangeLog template conformance fixes. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH 2] ChangeLog template conformance fixes. From: Edouard Gomez <edouard.gomez@gmail.com> # HG changeset patch # User ed.gomez@free.fr # Node ID e0661b00c613fa2bf1b670db1c9097423b4a107f # Parent b2e9146c237d84a1dd24af9a08bfb031bcc3a523 ChangeLog template conformance fixes. As per: http://www.w3.org/TR/html401/interact/forms.html#h-17.3 form element MUST have action attribute As per: http://www.w3.org/TR/html401/interact/forms.html#h-17.4 input has no length attribute, replace by size (i don't couple this with maxlength because a tag may be used in future versions and no length limit might be required ?). manifest hash: c8dccb4805167a47f159094fc5f57500caec4951 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCx1fdywK+sNU5EO8RAliGAJ4iBaSn2D9rRXVmreEYUwNvDyxMlQCeLxMU HcVHU0wRJDAbiXngOINk7GA= =FyPC -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 02 Jul 2005 19:13:33 -0800
parents 7f5ce4bbdd7b
children f5faab34f32e
line wrap: on
line source

#!/usr/bin/env python
#
# This is the mercurial setup script.
#
# './setup.py install', or
# './setup.py --help' for more options

import glob
from distutils.core import setup, Extension
from distutils.command.install_data import install_data

import mercurial.version

# specify version string, otherwise 'hg identify' will be used:
version = ''

class install_package_data(install_data):
    def finalize_options(self):
        self.set_undefined_options('install',
                                   ('install_lib', 'install_dir'))
        install_data.finalize_options(self)

try:
    mercurial.version.remember_version(version)
    setup(name='mercurial',
          version=mercurial.version.get_version(),
          author='Matt Mackall',
          author_email='mpm@selenic.com',
          url='http://selenic.com/mercurial',
          description='scalable distributed SCM',
          license='GNU GPL',
          packages=['mercurial'],
          ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']),
                       Extension('mercurial.bdiff', ['mercurial/bdiff.c'])],
          data_files=[('mercurial/templates',
                       ['templates/map'] +
                       glob.glob('templates/map-*') +
                       glob.glob('templates/*.tmpl'))],
          cmdclass = { 'install_data' : install_package_data },
          scripts=['hg', 'hgmerge'])
finally:
    mercurial.version.forget_version()