-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
32 lines (27 loc) · 755 Bytes
/
MANIFEST.in
File metadata and controls
32 lines (27 loc) · 755 Bytes
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
## Learn more at
## https://setuptools.pypa.io/en/latest/userguide/miscellaneous.html
## https://packaging.python.org/en/latest/guides/using-manifest-in/
graft entrainment
# graft tests
# `-> adds all files inside a directory
prune .github
prune .Rproj.user
prune docs/build
# `-> remove all files inside a directory
include CHANGELOG.md
include CITATION.cff
include CODE_OF_CONDUCT.md
include CONTRIBUTING.md
include LICENSE
include MANIFEST.in
include pyproject.toml
include README.md
exclude .gitignore
exclude .readthedocs.yaml
exclude .RData
exclude .Rhistory
exclude entrainment.Rproj
exclude README.Rmd
# `-> matches file paths relative to the root of the project
# global-exclude *_test.py
# `-> matches file names (regardless of directory)