forked from Lightning-AI/torchmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
53 lines (41 loc) · 970 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Manifest syntax https://docs.python.org/2/distutils/sourcedist.html
graft wheelhouse
recursive-exclude __pycache__ *.py[cod] *.orig
# Include the README and CHANGELOG
include *.md
recursive-include torchmetrics *.md
# Include the license file
include LICENSE
# Include Citation file
include *.cff
# Include marker file for PEP 561
include torchmetrics/py.typed
# Include examples
recursive-include tm_examples *.py
exclude *.sh
exclude *.toml
exclude *.svg
# exclude tests from package
recursive-exclude tests *
recursive-exclude site *
exclude tests
# Exclude the documentation files
recursive-exclude docs *
exclude docs
# Include the Requirements
include requirements.txt
recursive-include requirements *.txt
recursive-exclude requirements *.py
# Exclude build configs
exclude *.yml
exclude *.yaml
exclude Makefile
prune .devcontainer
prune .git
prune .github
prune .circleci
prune notebook*
prune temp*
prune test*
prune benchmark*
prune integration*