From 82c85a37466bdf3721a1c1f92a2e791be7b00ae8 Mon Sep 17 00:00:00 2001 From: Gregory Rehm Date: Tue, 19 Mar 2019 15:37:07 -0700 Subject: [PATCH] add setup file so that we can run this as a library --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 00000000..96771799 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +from setuptools import setup, find_packages + + +setup(name='mimic3-benchmarks', + version="1.0", + description='Benchmarking ML tools for MIMIC 3', + packages=find_packages(), + install_requires=[ + 'keras', + 'tensorflow', + 'numpy', + 'pandas', + 'scipy', + 'scikit-learn', + 'pyyaml', + ], + entry_points={ + }, + include_package_data=True, + )