forked from Borda/BIRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
56 lines (41 loc) · 1.1 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
graft wheelhouse
recursive-include birl *.py
recursive-exclude __pycache__ *.pyc *.pyo *.orig
# Include the README
include *.md
# Include the license file
include LICENSE
# Include the visualisations
recursive-include figures *.jpg
# Include the util scripts and experiments
recursive-include bm_dataset *.py
recursive-include bm_experiments *.py
recursive-exclude bm_experiments *.sh
# exclude challenge scripts
recursive-exclude bm_ANHIR *
exclude bm_ANHIR
# exclude tests from package
recursive-exclude tests *
exclude tests
# Exclude Jupyter notebooks
recursive-exclude notebooks *.ipynb *.txt
exclude notebooks
# Include the data files
recursive-include data_images *
# Include the method config files
recursive-include configs *
# Exclude the documentation files
recursive-exclude docs *
exclude docs
# Exclude the ImageJ macro files
recursive-include scripts *.r *.ijm *.bsh *.py
# Include the Requirements
include requirements.txt
# Exclude build configs
exclude *.yml
prune .git
prune .github
prune notebook*
prune temp*
prune test*