forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MANIFEST.in
32 lines (32 loc) · 1.08 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
# Use .add_data_files and .add_data_dir methods in a appropriate
# setup.py files to include non-python files such as documentation,
# data, etc files to distribution. Avoid using MANIFEST.in for that.
#
include MANIFEST.in
include *.txt
include setupscons.py
include setupegg.py
include setup.py
include scipy/*.py
# Add Cython files
recursive-include scipy *.pyx *.pxd *.pxi
# Adding scons build related files not found by distutils
recursive-include scipy SConstruct SConscript
recursive-include scipy README
# Add files to allow Bento build
include f2py.py
include interface_gen.py
include bscript bento.info
recursive-include scipy bscript bento.info
# Add build and testing tools
include tools/py3tool.py
include tox.ini
include tools/test-installed-scipy.py
# Add documentation: we don't use add_data_dir since we do not want to include
# this at installation, only for sdist-generated tarballs
include doc/Makefile doc/postprocess.py
recursive-include doc/release *
recursive-include doc/source *
recursive-include doc/sphinxext *
prune scipy/special/tests/data/boost
include scipy/special/Faddeeva.hh