forked from benchopt/benchopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
44 lines (37 loc) · 1.19 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
include LICENSE
include setup.py
include setup.cfg
include CHANGE.md
include conftest.py
include pyproject.toml
recursive-include benchopt *.py
# Include html templates and css for plotting
recursive-include benchopt/plotting *.html
recursive-include benchopt/plotting *.css
recursive-include benchopt/plotting *.js
recursive-include benchopt/plotting *.svg
# Include doc generation files
include doc/_static/style.css
include doc/_templates/search.html
recursive-include doc *.py
recursive-include doc *.rst
recursive-include doc *.txt
recursive-include doc *.inc
recursive-include doc *.png
recursive-include doc *.svg
recursive-include doc Makefile
prune doc/_build
prune doc/generated
prune doc/auto_examples
# Include examples
recursive-include examples *.py
recursive-include examples *.txt
# Include dummy benchmark for test
recursive-include benchopt/tests/dummy_benchmark *.R
recursive-include benchopt/tests/dummy_benchmark *.jl
recursive-include benchopt/tests/dummy_benchmark *.py
recursive-include benchopt/tests/dummy_benchmark *.md
include benchopt/datasets/tests/test_dataset_simulated.py
# Exclude joblib folders in dummy_benchmark
prune benchopt/tests/dummy_benchmark/__cache__
exclude .mailmap