blob: 6d04f593c8630f5ceb7038b8f77236d900132fe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# any kind of "*" pulls in __init__.pyc files,
# so all extensions are explicit.
recursive-include doc *.html *.css *.txt *.js *.png *.py Makefile *.rst *.sty
recursive-include examples *.py *.xml
recursive-include test *.py *.dat *.testpatch
# include the c extensions, which otherwise
# don't come in if --with-cextensions isn't specified.
recursive-include lib *.c *.txt
include README* AUTHORS LICENSE CHANGES* tox.ini
prune doc/build/output
# don't include pyproject.toml until we
# have explicitly built a pep-517 backend
exclude pyproject.toml
|