view setup.py @ 32:00ca88ef1c33

more documentation
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 11 Jul 2011 12:59:49 -0700
parents 8fef97a25925
children 122c56779f2b
line wrap: on
line source

from setuptools import setup

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

version = '0.2.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='http://k0s.org/mozilla/hg/carton',
      license='MPL',
      py_modules=['carton'],
      packages=[],
      include_package_data=True,
      zip_safe=False,
      install_requires=[],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      carton = carton:main
      """,
      )