diff options
author | Eric Larson <larson.eric.d@gmail.com> | 2020-05-26 10:05:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 10:05:47 -0400 |
commit | 278cf213ecd308d4f77ab700d1efa8f01059b9e6 (patch) | |
tree | 1e79e6a1c675b6a4c937a72f85d0bc98d6ac2799 | |
parent | ae7383b87f854026784eaf255de79da441c74dd6 (diff) | |
download | numpydoc-1.0.0.tar.gz |
MAINT: Update manifest (#265)v1.0.0
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | MANIFEST.in | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 194520a..895a0b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,9 +27,10 @@ jobs: before_install: - pip install --upgrade pip setuptools # Ensure there is `wheel` support - - pip install pytest pytest-cov pydocstyle numpy matplotlib sphinx${SPHINX_SPEC} codecov + - pip install pytest pytest-cov pydocstyle numpy matplotlib sphinx${SPHINX_SPEC} codecov check-manifest script: + - check-manifest - | python setup.py sdist cd dist diff --git a/MANIFEST.in b/MANIFEST.in index 271247e..cda4948 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,13 @@ include MANIFEST.in recursive-include numpydoc * include *.txt include *.rst +recursive-include doc * # Exclude what we don't want to include prune */__pycache__ +exclude .circleci/config.yml +exclude .coveragerc +exclude codecov.yml +exclude doc/scipy-sphinx-theme/.git +exclude .gitmodules global-exclude *.pyc *~ *.bak *.swp *.pyo |