From c7a6c4f8b3602ad33518f202bbd7d08638b0a7c5 Mon Sep 17 00:00:00 2001 From: Alex Merose Date: Mon, 28 Mar 2022 17:02:28 -0700 Subject: [PATCH] Shrinking the size of the package release artifacts (#122) * Adding a MANIFEST.in to trim down tarball. * Updated MANIFEST.in to exclude all tests. * Reduced size of sbin, but not wheel. There's a bug in setuptools_scm. * _Not_ excluding documentation and config files. --- MANIFEST.in | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..195c42d3 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,10 @@ +global-exclude *.nc +global-exclude *.gb *.grib +global-exclude *.bz2 +global-exclude *.yaml *.yml +global-exclude *_test.py +prune .github +prune bin +prune docs +prune weather_*/test_data +exclude tox.ini