comparison setup.py @ 337:46e69be8e2c8

Reorganize to have a more conventional module structure. This means that hgsubversion now uses absolute imports instead of relative ones, which makes the tests more reliable.
author Augie Fackler <durin42@gmail.com>
date Wed, 13 May 2009 21:39:39 -0500
parents 1ba8ed29148e
children 537de0300510
comparison
equal deleted inserted replaced
336:c0b943cef0c3 337:46e69be8e2c8
21 description = ('hgsubversion is a Mercurial extension for working with ' 21 description = ('hgsubversion is a Mercurial extension for working with '
22 'Subversion repositories.'), 22 'Subversion repositories.'),
23 long_description = open(os.path.join(os.path.dirname(__file__), 23 long_description = open(os.path.join(os.path.dirname(__file__),
24 'README')).read(), 24 'README')).read(),
25 keywords = 'mercurial', 25 keywords = 'mercurial',
26 packages = ['hgext.hgsubversion', 'hgext.hgsubversion.svnwrap'], 26 packages = ['hgsubversion', 'hgsubversion.svnwrap'],
27 package_dir = {'hgext.hgsubversion': ''},
28 platforms = 'any', 27 platforms = 'any',
29 classifiers = [ 28 classifiers = [
30 'License :: OSI Approved :: GNU General Public License (GPL)', 29 'License :: OSI Approved :: GNU General Public License (GPL)',
31 'Intended Audience :: Developers', 30 'Intended Audience :: Developers',
32 'Topic :: Software Development :: Version Control', 31 'Topic :: Software Development :: Version Control',