Mercurial > hg > fail
diff setup.py @ 0:02d077c5627a
initial program
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 29 Feb 2016 13:48:39 -0800 |
parents | |
children | a4680e54c481 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Feb 29 13:48:39 2016 -0800 @@ -0,0 +1,35 @@ +import os +from setuptools import setup + +try: + here = os.path.dirname(os.path.abspath(__file__)) + description = file(os.path.join(here, 'README.txt')).read() +except IOError: + description = None + +version = '0.0' + +deps = [] + +setup(name='fail', + version=version, + description="run a program until it fails and gather statistics", + long_description=description, + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + keywords='', + author='Jeff Hammel', + author_email='k0scist@gmail.com', + url='', + license='', + py_modules=['fail'], + packages=[], + include_package_data=True, + zip_safe=False, + install_requires=deps, + entry_points=""" + # -*- Entry points: -*- + [console_scripts] + fail = fail:main + """, + ) +