Mercurial > hg > stampit
view setup.py @ 5:3f9fac577d75
this now actually makes some tarballs for you
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 20 Apr 2010 14:51:47 -0700 |
parents | af10f7e072ed |
children | 40495047117d |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='stampit', version=version, description='stamp out virtualenv tarballs appropriate to a platform (and upload them?)', long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='jhammel@mozilla.com', url='', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- [console_scripts] stampit = stampit.main:main """, )