-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
40 lines (35 loc) · 776 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
40 lines (35 loc) · 776 Bytes
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
# Include documentation
include README.md
include LICENSE
include CHANGELOG.md
# Include configuration files
include pyproject.toml
include requirements.txt
# Include package data
recursive-include mlcli *.py
recursive-include mlcli *.json
recursive-include mlcli *.yaml
recursive-include mlcli *.yml
# Include configs directory
recursive-include configs *.json
recursive-include configs *.yaml
recursive-include configs *.yml
# Exclude unnecessary files
global-exclude __pycache__
global-exclude *.py[cod]
global-exclude *.so
global-exclude .DS_Store
global-exclude *.egg-info
global-exclude .git*
# Exclude development/test files
prune tests
prune docs
prune scripts
prune data
prune models
prune runs
prune artifacts
prune logs
prune website
prune .venv
prune .github