view setup.py @ 50:582f3571ab33 default tip

better help string
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 31 May 2013 19:48:55 -0700
parents 2d6b1a8a2b7d
children
line wrap: on
line source

import os
from setuptools import setup

try:
    here = os.path.dirname(os.path.abspath(__file__))
    description = file(os.path.join(here, 'README.txt')).read()
except IOError:
    description = None

version = '0.0'

deps = ['configuration >= 0.3.2']

setup(name='mozillatry',
      version=version,
      description="push patches to mozilla try server",
      long_description=description,
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='mozilla',
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/mozilla',
      license='',
      py_modules=['mozillatry'],
      packages=[],
      include_package_data=True,
      zip_safe=False,
      install_requires=deps,
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      mozillatry = mozillatry:main
      """,
      )