forked from obspy/obspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
20 lines (18 loc) · 1.2 KB
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Unfortunately setuptools and numpy.distutils do not like each other and lot's
# of small incompatibilities are around. One manifestation of this is that the
# source code and data files included in the setup.py are included in binary
# distributions but not in source distributions...
# Therefore the MANIFEST.in files appears to be necessary.
# See http://scipy-user.10969.n7.nabble.com/SciPy-User-setuptools-messing-with-sdists-using-numpy-distutils-and-Fortran-libraries-td19023.html
# for more details.
# 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