Mercurial > hg > bzconsole
comparison setup.py @ 37:d1b8fc0cb6cb
add patch.py as a dep
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 14 Dec 2012 15:18:01 -0800 |
parents | 19c6b5cea57f |
children | 0a3c7d8eec72 |
comparison
equal
deleted
inserted
replaced
36:619e27c447b8 | 37:d1b8fc0cb6cb |
---|---|
18 keywords='', | 18 keywords='', |
19 author='Jeff Hammel', | 19 author='Jeff Hammel', |
20 author_email='jhammel@mozilla.com', | 20 author_email='jhammel@mozilla.com', |
21 url='http://k0s.org/mozilla/hg/bzconsole', | 21 url='http://k0s.org/mozilla/hg/bzconsole', |
22 license='MPL', | 22 license='MPL', |
23 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 23 packages=['bzconsole'], |
24 include_package_data=True, | 24 include_package_data=True, |
25 zip_safe=False, | 25 zip_safe=False, |
26 install_requires=[ | 26 install_requires=['patch'], |
27 # -*- Extra requirements: -*- | 27 dependency_links=[ |
28 'simplejson' | 28 'http://python-patch.googlecode.com/svn/trunk/patch.py#egg=patch-0.0' |
29 ], | 29 ], |
30 entry_points=""" | 30 entry_points=""" |
31 # -*- Entry points: -*- | 31 # -*- Entry points: -*- |
32 [console_scripts] | 32 [console_scripts] |
33 bz = bzconsole.main:main | 33 bz = bzconsole.main:main |
34 """, | 34 """, |