From 383733ba43b76b7d31da06bbc52338b3c9a70a19 Mon Sep 17 00:00:00 2001 From: Ned Batchelder <ned@edx.org> Date: Mon, 14 Sep 2020 16:30:50 -0400 Subject: [PATCH] Fix the installation The setup.py references requirements/base.in, so it needs to be included in the distribution by naming it in MANIFEST.in --- .gitignore | 3 ++- MANIFEST.in | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/.gitignore b/.gitignore index 0faecab..ca63093 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ ### Python artifacts *.pyc *.egg-info +dist/ ### Editor and IDE artifacts *~ @@ -17,4 +18,4 @@ codekit-config.json var/ # virtualenvironment -venv/ \ No newline at end of file +venv/ diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f5b3dc2 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include requirements/base.in +include NOTICE +include LICENSE -- GitLab