diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..012cc1d2 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,39 @@ +# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html +graft wheelhouse + +recursive-exclude __pycache__ *.py[cod] *.orig + +# Include the README and CHANGELOG +include *.md +recursive-include src *.md + +# Include the license file +include LICENSE + +# Exclude build configs +exclude *.sh +exclude *.toml +exclude *.svg +exclude *.yml +exclude *.yaml + +# exclude tests from package +recursive-exclude tests * +recursive-exclude site * +exclude tests + +# Exclude the documentation files +recursive-exclude docs * +exclude docs + +# Include the Requirements +include requirements.txt +recursive-include _requirements *.tx;t + +# Exclude Makefile +exclude Makefile + +prune .git +prune .github +prune temp* +prune test*