-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMANIFEST.in
More file actions
40 lines (33 loc) · 825 Bytes
/
MANIFEST.in
File metadata and controls
40 lines (33 loc) · 825 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 pyproject.toml
# Include configuration examples
recursive-include config *.yaml.example
recursive-include config *.example
# Include documentation
recursive-include docs *.md
recursive-include docs *.csv
# Include examples
recursive-include examples *.py
recursive-include examples *.yaml
recursive-include examples *.md
# Exclude build artifacts
global-exclude __pycache__
global-exclude *.py[cod]
global-exclude .DS_Store
global-exclude *.so
# Exclude credentials and sensitive files
exclude config/credentials.yaml
exclude config/system_profile.yaml
exclude .env
exclude .env.local
# Exclude data directories
prune data/
prune logs/
prune mlruns/
prune catboost_info/
# Exclude development files
prune .venv/
prune .pytest_cache/
prune .mypy_cache/