Mercurial > hg > stampit
annotate setup.py @ 13:40495047117d
update setup.py
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Fri, 30 Apr 2010 13:26:51 -0700 |
| parents | 3f9fac577d75 |
| children |
| rev | line source |
|---|---|
| 0 | 1 from setuptools import setup, find_packages |
| 2 import sys, os | |
| 3 | |
|
5
3f9fac577d75
this now actually makes some tarballs for you
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
4 version = '0.1' |
| 0 | 5 |
| 6 setup(name='stampit', | |
| 7 version=version, | |
| 8 description='stamp out virtualenv tarballs appropriate to a platform (and upload them?)', | |
| 9 long_description="""\ | |
| 10 """, | |
| 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 13 | 12 keywords='pip virtualenv packages tarballs', |
| 0 | 13 author='Jeff Hammel', |
| 14 author_email='jhammel@mozilla.com', | |
| 13 | 15 url='http://k0s.org/hg/stampit', |
| 0 | 16 license='MPL', |
| 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 18 include_package_data=True, | |
| 19 zip_safe=False, | |
| 20 entry_points=""" | |
| 21 # -*- Entry points: -*- | |
| 22 [console_scripts] | |
| 23 stampit = stampit.main:main | |
| 24 """, | |
| 25 ) |
