forked from obspy/obspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
12 lines (11 loc) · 719 Bytes
/
MANIFEST.in
File metadata and controls
12 lines (11 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
# Include all files in top-level and obspy-top-level directories (e.g. CHANGELOG, RELEASE-VERSION, ...)
include * # seem to catch only files, so ./misc and ./debian are not catched.. good!
recursive-include obspy * # includes all files in any subdirs, so it also catches *all* subdirs
# exclude rules
global-exclude *.pyc
exclude .* appveyor.yml
prune obspy/*/docs # manual pdfs amount to approx. 10MB, leave them out
prune obspy/*/*/docs # manual pdfs amount to approx. 10MB, leave them out
# Exclude the misc directory (not necessary it seems, seems directories in top-level gett left out on default)
#prune misc
recursive-include misc/docs * # inclusion of docs source has been requested for packaging reasons