view setup.py @ 5:b407681e6f2c

fix parameter type
author Jeff Hammel <k0scist@gmail.com>
date Tue, 23 Aug 2016 16:36:39 -0700
parents d1880117acb5
children
line wrap: on
line source

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.1.2'

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='http://k0s.org/hg/fail',
      license='',
      py_modules=['fail'],
      packages=[],
      include_package_data=True,
      zip_safe=False,
      install_requires=deps,
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      fail = fail:main
      """,
      )