summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in10
-rw-r--r--tasks.py2
2 files changed, 7 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index bd10c4e8..cb4c4508 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,7 +1,9 @@
-include LICENSE README.md CHANGELOG.md noxfile.py Pipfile
+include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
recursive-include examples *
recursive-include tests *
recursive-include docs *
-recursive-exclude docs/_build *
-recursive-exclude plugins *
-exclude .github .gitignore azure-pipelines.yml tasks.py
+prune .github
+prune docs/_build
+prune docs/.nox
+exclude .github .gitignore azure-pipelines.yml
+global-exclude htmlcov/** .coverage* __pycache__/** .gitignore
diff --git a/tasks.py b/tasks.py
index ef6f3041..58bd1df8 100644
--- a/tasks.py
+++ b/tasks.py
@@ -152,7 +152,7 @@ namespace.add_task(docs)
def doc8(context):
"""Check documentation with doc8"""
with context.cd(TASK_ROOT_STR):
- context.run('doc8 docs --ignore-path docs/_build')
+ context.run('doc8 docs --ignore-path docs/_build --ignore-path docs/.nox')
namespace.add_task(doc8)