forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
34 lines (34 loc) · 945 Bytes
/
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
include MANIFEST.in
include *.txt
# Top-level build script
include setup.py
include pyproject.toml
# All source files
recursive-include scipy *
recursive-include benchmarks *
# All documentation
recursive-include doc *
# Add build and testing tools
include runtests.py
include .coveragerc
include site.cfg.example
include tox.ini pytest.ini
recursive-include tools *
# Cached Cython signatures
include cythonize.dat
# Exclude what we don't want to include
recursive-exclude scipy/linalg/src/id_dist/src *_subr_*.f
prune benchmarks/env
prune benchmarks/results
prune benchmarks/html
prune benchmarks/scipy
prune scipy/special/tests/data/boost
prune scipy/special/tests/data/gsl
prune scipy/special/tests/data/local
prune doc/build
prune doc/source/generated
prune */__pycache__
global-exclude *.pyc *~ *.bak *.swp *.pyo
# Exclude license file that we append to the main license when running
# `python setup.py sdist`
exclude LICENSES_bundled.txt