import os from setuptools import setup # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level # README file and 2) it's easier to type in the README file than to put a raw # string in below ... def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name = "param_runner", version = "1.0.0a5", author = "David Trudgian", author_email = "david.trudgian@utsouthwestern.edu", description = ("Parameter exploration on SLURM clusters."), license = "", keywords = "hpc computing", url = "https://git.biohpc.swmed.edu/biohpc/param_runner", packages=['param_runner'], package_data={ 'param_runner': ['schema/*']}, long_description=read('README.md'), classifiers=[ "Development Status :: 3 - Alpha", "Topic :: Utilities", ], install_requires=[ 'anyconfig', 'jsonschema', 'docopt', 'colorlog', 'pyyaml', 'yamllint', 'pathos' ], scripts=['bin/param_runner'], setup_requires=['pytest-runner'], tests_require=['pytest', 'pytest-cov'], zip_safe=False, )