Mercurial > hg > hq
comparison setup.py @ 15:6c4f258fae85
going forward with it
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 May 2013 03:15:03 -0700 |
parents | b5671297a0db |
children |
comparison
equal
deleted
inserted
replaced
14:46a68cd554b5 | 15:6c4f258fae85 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = '0.0' | 4 version = '0.1' |
5 | 5 |
6 setup(name='hq', | 6 setup(name='hq', |
7 version=version, | 7 version=version, |
8 description='mercurial queue extension front-end policy manager', | 8 description='mercurial queue extension front-end policy manager', |
9 long_description="""\ | 9 long_description="""\ |
10 """, | 10 """, |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='hg mercurial patch', | 12 keywords='hg mercurial patch', |
13 author='Jeff Hammel', | 13 author='Jeff Hammel', |
14 author_email='jhammel@mozilla.com', | 14 author_email='jhammel@mozilla.com', |
15 url='http://k0s.org', | 15 url='http://k0s.org/hg/hq', |
16 license='MPL', | 16 license='MPL', |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
18 include_package_data=True, | 18 include_package_data=True, |
19 zip_safe=False, | 19 zip_safe=False, |
20 install_requires=[ | 20 install_requires=[ |
21 # -*- Extra requirements: -*- | 21 'CommandParser', |
22 ], | 22 ], |
23 entry_points=""" | 23 entry_points=""" |
24 # -*- Entry points: -*- | 24 # -*- Entry points: -*- |
25 [console_scripts] | 25 [console_scripts] |
26 hq = hq.main:main | 26 hq = hq.main:main |