Mercurial > hg > bzconsole
view setup.py @ 23:2eaf17cb07f6
add whiteboard to new entry
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 Dec 2010 17:08:15 -0800 |
parents | 3b7f4104cd72 |
children | 85357b075211 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.1.1' readme = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.txt') if os.path.exists(readme): description = file(readme).read() else: description = '' setup(name='bzconsole', version=version, description='console API to bugzilla', long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/mozilla/hg/bzconsole', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'simplejson' ], entry_points=""" # -*- Entry points: -*- [console_scripts] bz = bzconsole.main:main """, )