Mercurial > hg > hq
view setup.py @ 25:e6b1a435f00e default tip
from TODO
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 25 Feb 2017 13:09:51 -0800 |
parents | 6c4f258fae85 |
children |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='hq', version=version, description='mercurial queue extension front-end policy manager', long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='hg mercurial patch', author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/hg/hq', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'CommandParser', ], entry_points=""" # -*- Entry points: -*- [console_scripts] hq = hq.main:main """, )