-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
41 lines (36 loc) · 1.26 KB
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Files to include in the source distribution (sdist). See
# https://packaging.python.org/guides/using-manifest-in/.
# Note that the built distribution (bdist) created from the sdist only
# contains files inside the package even if the sdist might contain
# additional files outside the package. See
# https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html#build-process
# Commands are processed in the order they appear. In the case of
# conflicting commands, the last command wins.
# exclude <file-pattern>: Exclude all files matching <file-pattern>.
exclude .*
# include <file-pattern>: Include all files matching <file-pattern>.
include CONTRIBUTING.rst
include LICENSE.txt
include MANIFEST.in
include pyproject.toml
include README.rst
include requirements*.txt
include setup.py
# graft <dir-pattern>: Include all files under directories matching
# <dir-pattern>.
# graft docs
# graft examples
graft scripts
graft src
# graft tests
# prune <dir-pattern>: Exclude all files under directories matching
# <dir-pattern>.
prune .github
prune .vscode
# prune docs/buid
# prune **/_sphinx_autosummary*
prune **__pycache__
# global-exclude <file-pattern>: Exclude all files anywhere in the
# source tree matching <file-pattern>.
global-exclude .git*
global-exclude *.py[cod]