comparison setup.py @ 1106:5cb6c95e0283 stable

Merge default and stable so I can do stable releases again.
author Augie Fackler <raf@durin42.com>
date Tue, 11 Feb 2014 12:48:49 -0500
parents 7d47a0f73135
children
comparison
equal deleted inserted replaced
1020:b5b1fce26f1f 1106:5cb6c95e0283
25 # If root is executing setup.py, but the repository is owned by 25 # If root is executing setup.py, but the repository is owned by
26 # another user (as in "sudo python setup.py install") we will get 26 # another user (as in "sudo python setup.py install") we will get
27 # trust warnings since the .hg/hgrc file is untrusted. That is 27 # trust warnings since the .hg/hgrc file is untrusted. That is
28 # fine, we don't want to load it anyway. 28 # fine, we don't want to load it anyway.
29 err = [e for e in err.splitlines() 29 err = [e for e in err.splitlines()
30 if not e.startswith('Not trusting file')] 30 if not (e.startswith('Not trusting file')
31 or e.startswith('obsolete feature not enabled'))]
31 if err: 32 if err:
32 return '' 33 return ''
33 return out 34 return out
34 35
35 36
116 description=('hgsubversion is a Mercurial extension for working with ' 117 description=('hgsubversion is a Mercurial extension for working with '
117 'Subversion repositories.'), 118 'Subversion repositories.'),
118 long_description=open(os.path.join(os.path.dirname(__file__), 119 long_description=open(os.path.join(os.path.dirname(__file__),
119 'README')).read(), 120 'README')).read(),
120 keywords='mercurial', 121 keywords='mercurial',
121 packages=('hgsubversion', 'hgsubversion.hooks', 'hgsubversion.svnwrap'), 122 packages=('hgsubversion', 'hgsubversion.hooks', 'hgsubversion.layouts',
123 'hgsubversion.svnwrap'),
122 package_data={ 'hgsubversion': ['help/subversion.rst'] }, 124 package_data={ 'hgsubversion': ['help/subversion.rst'] },
123 platforms='any', 125 platforms='any',
124 install_requires=requires, 126 install_requires=requires,
125 classifiers=[ 127 classifiers=[
126 'License :: OSI Approved :: GNU General Public License (GPL)', 128 'License :: OSI Approved :: GNU General Public License (GPL)',