Mercurial > hg > carton
annotate setup.py @ 37:33e5d444ff30
fix
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Mon, 09 Apr 2012 13:20:05 -0700 |
| parents | 122c56779f2b |
| children | d9dcc5a1503b |
| rev | line source |
|---|---|
| 1 | 1 from setuptools import setup |
| 2 | |
| 3 try: | |
| 16 | 4 import carton |
| 5 description = carton.__doc__ | |
| 6 except ImportError: | |
| 1 | 7 description = None |
| 8 | |
|
35
122c56779f2b
add functionality to run post-install python scripts
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
9 version = '0.2.2' |
| 1 | 10 |
| 11 setup(name='carton', | |
| 12 version=version, | |
| 2 | 13 description="make self-extracting virtualenvs", |
| 1 | 14 long_description=description, |
| 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 16 keywords='mozilla', | |
| 17 author='Jeff Hammel', | |
| 18 author_email='jhammel@mozilla.com', | |
| 32 | 19 url='http://k0s.org/mozilla/hg/carton', |
| 1 | 20 license='MPL', |
| 21 py_modules=['carton'], | |
| 22 packages=[], | |
| 23 include_package_data=True, | |
| 24 zip_safe=False, | |
| 25 install_requires=[], | |
| 26 entry_points=""" | |
| 27 # -*- Entry points: -*- | |
| 28 [console_scripts] | |
| 29 carton = carton:main | |
| 30 """, | |
| 31 ) |
