view setup.py @ 25:e2db2913123d

test to ensure we are bringing along virtualenv
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 10 Jul 2011 18:23:28 -0700
parents c91abbdc871b
children dabf5e1bdf92
line wrap: on
line source

from setuptools import setup

try:
    import carton
    description = carton.__doc__
except ImportError:
    description = None

version = '0.1'

setup(name='carton',
      version=version,
      description="make self-extracting virtualenvs",
      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='https://wiki.mozilla.org/Auto-tools',
      license='MPL',
      py_modules=['carton'],
      packages=[],
      include_package_data=True,
      zip_safe=False,
      install_requires=[],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      carton = carton:main
      """,
      )