# HG changeset patch # User Jeff Hammel # Date 1310135561 25200 # Node ID dd6985163631bad784a6fd148ea03e46d7af3935 # Parent 1c7da6388dd9dd877415f119eb227440c24083ee add a setup.py diff -r 1c7da6388dd9 -r dd6985163631 carton.py diff -r 1c7da6388dd9 -r dd6985163631 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Fri Jul 08 07:32:41 2011 -0700 @@ -0,0 +1,32 @@ +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 virtualevns" + 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 + """, + )