diff --git a/README.md b/README.md index 8b52621..3f147d0 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,16 @@ Install with `docker`. docker run -it -v /:/host tobegit3hub/tfmodel bash ``` +Install from source. + +```bash +git clone https://github.com/tobegit3hub/tfmodel + +cd ./tfmodel + +python ./setup.py install +``` + ## Usage ### Validate Model diff --git a/setup.py b/setup.py index 7e9b67d..87ed08f 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,11 @@ setup( name="tensorflow-model", - version="0.1.0", + version="0.1.1", author="tobe", author_email="tobeg3oogle@gmail.com", url="https://github.com/tobegit3hub/tfmodel", - install_requires=["tensorflow"], + install_requires=["coloredlogs", "prettytable", "tensorflow"], description="Command-line tool to inspect TensorFlow models", packages=find_packages(), zip_safe=False,