Mercurial > hg > pyloader
view setup.py @ 83:58eed691dca7
debugging
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 11 Nov 2013 19:18:58 -0800 |
parents | b57de7c38a74 |
children | fa2c4db30e81 |
line wrap: on
line source
import os from setuptools import setup, find_packages try: here = os.path.dirname(os.path.abspath(__file__)) description = file(os.path.join(here, 'README.txt')).read() except IOError: description = '' version = "0.1.3" dependencies = [] setup(name='pyloader', version=version, description="Load python attributes from a string", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=dependencies, entry_points=""" # -*- Entry points: -*- [console_scripts] pyloader = pyloader.invoke:main """, )