From cbfba9756031e0c7c3afbd7012347bcd4a8e0b36 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Wed, 27 Mar 2024 20:28:07 -0700 Subject: [PATCH] Delete MANIFEST.in file This includes everything in the git repo in the built package, which then allows `build` to find the `package.json` and other files to build. I guess a 'source' distribution *should* include the JS and CSS files. This increases file size by a few kb but that's fine. --- MANIFEST.in | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index e40cdb3..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,19 +0,0 @@ -# setuptools-scm puts all tracked files here already. We need to -# prune files we don't want in our sdist, and include generated files -# Ideally we can simply just *include* files we want, but I have given up -# on that for now. - -# Add generated files -graft jupyterhub_fancy_profiles/static/dist - -# Remove JS files that we won't need when installed -exclude src/* -exclude webpack.config.js - -# Remove docs & dev time needs we won't need when installed in sdist -exclude CONTRIBUTING.md -exclude dev-requirements.txt -exclude jupyterhub_config.py -exclude binderhub_config.py -exclude package.json -exclude screenshot.png