-
Notifications
You must be signed in to change notification settings - Fork 104
/
MANIFEST.in
32 lines (27 loc) · 912 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
# Remove directories
prune .github
prune build
prune dist
prune deprecated
prune doc
prune proposals
prune presentations
prune paper
# Remove file types
global-exclude *.pyc *.o *.so *.DS_Store *.ipynb
# Remove large data sets
# NOTE: If you exclude more data from the pypeit/data directory, make sure to
# update the defined_paths dictionary in pypeit.pypeitdata.PypeItDataPaths!
recursive-exclude pypeit/data/arc_lines/reid_arxiv *.fits *.json *.pdf *.tar.gz
recursive-exclude pypeit/data/arc_lines/NIST *.ascii
recursive-exclude pypeit/data/pixelflats *.fits.gz
recursive-exclude pypeit/data/sensfuncs *.fits
recursive-exclude pypeit/data/skisim *.dat
recursive-exclude pypeit/data/standards *.gz *.fits *.dat
recursive-exclude pypeit/data/tests *.gz *.fits *.npz
# Remove individual files
exclude .gitignore
exclude checkout_current_tag
exclude environment.yml
exclude sphinx.readme
exclude update_docs