view setup.py @ 12:67b04f3c5032 default tip

dont pull from origin; there shouldnt be changes there use --rebase flag when pulling from master, dont know why
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 06 Aug 2010 17:50:54 -0700
parents 68bf3598f364
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.1'

setup(name='gut',
      version=version,
      description='a workflow for git',
      long_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/',
      license='MPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      gut = gut.main:main
      """,
      )