view setup.py @ 14:08f79ed6cfa3 default tip

move the one utility function directly into the main file so that it may be directly invoked on the web
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 30 Apr 2010 13:29:50 -0700
parents 40495047117d
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.1'

setup(name='stampit',
      version=version,
      description='stamp out virtualenv tarballs appropriate to a platform (and upload them?)',
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='pip virtualenv packages tarballs',
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/hg/stampit',
      license='MPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      stampit = stampit.main:main
      """,
      )