From 1faeb158043963ea2a01d9299c5fca712ce1e8e5 Mon Sep 17 00:00:00 2001 From: Jason Nance Date: Tue, 22 Oct 2019 09:08:35 -0400 Subject: [PATCH] Add requirements.txt to MANIFEST.in This file is required for Dockerfile builds for a few of the models. --- MANIFEST.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4c1e953..df2bd29 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,4 +3,5 @@ include README.md include meta.json # We have some .py files that are needed but aren't part of the package, so make sure they're included recursive-include gobbli *.py -recursive-include gobbli Dockerfile \ No newline at end of file +recursive-include gobbli Dockerfile +recursive-include gobbli requirements.txt \ No newline at end of file