view setup.py @ 2:dba783d48eae

typo
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 08 Jul 2011 08:39:16 -0700
parents dd6985163631
children c91abbdc871b
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.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
      """,
      )