Mercurial > hg > carton
view setup.py @ 40:39fa450b21bd default tip
updates for today
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 22 Feb 2016 14:16:09 -0800 |
parents | d9dcc5a1503b |
children |
line wrap: on
line source
from setuptools import setup try: import carton description = carton.__doc__ except ImportError: description = None version = '0.3' setup(name='carton', version=version, description="make self-extracting virtualenvs", long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='packaging', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/hg/carton', license='MPL', py_modules=['carton'], packages=[], include_package_data=True, zip_safe=False, install_requires=[], entry_points=""" # -*- Entry points: -*- [console_scripts] carton = carton:main """, )