From eb65fdd8a2ac5ab7632ce2324fcb84e29b844403 Mon Sep 17 00:00:00 2001 From: zqwerty <zhuq96@hotmail.com> Date: Mon, 27 Jun 2022 13:35:17 +0800 Subject: [PATCH] add boto3 support for download in setup.py, excluding data/* using MANIFEST --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..544f538c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +prune data \ No newline at end of file diff --git a/setup.py b/setup.py index aae0ccc5..6a51d8cc 100755 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ setup( ], setup_requires=['setuptools-git'], install_requires=[ + 'boto3', 'matplotlib', 'tabulate', 'python-Levenshtein', -- GitLab