Skip to content

Commit fc49682

Browse files
committed
Fix #456: Fix source dist file
Some files like conftest.py and docs/ were missing from the source distribution.
1 parent 64ad57c commit fc49682

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

MANIFEST.in

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
include *.rst
22
include *.txt
3-
include tests/test_*.py
3+
include tests/*.py
4+
include Makefile
5+
include *.md
6+
include changelog.d/*
7+
graft docs/**
8+
include CITATION.cff
9+
include tox.ini
10+
11+
# The dot files:
12+
include .coveragerc
13+
include .editorconfig
14+
include .gitignore
15+
include .readthedocs.yaml
16+
417

518
prune docs/_build
619
recursive-exclude .github *
20+
prune docs/**/__pycache__
721

822
global-exclude __pycache__

0 commit comments

Comments
 (0)