Mercurial > hg > carton
annotate setup.py @ 34:261e2d2d26ad
update documentation
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 11 Jul 2011 15:03:50 -0700 |
parents | 00ca88ef1c33 |
children | 122c56779f2b |
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 | |
31
8fef97a25925
near version bump and documentation
Jeff Hammel <jhammel@mozilla.com>
parents:
28
diff
changeset
|
9 version = '0.2.1' |
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 ) |