-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMANIFEST.in
More file actions
103 lines (87 loc) · 2.42 KB
/
Copy pathMANIFEST.in
File metadata and controls
103 lines (87 loc) · 2.42 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Include the README and other documentation files
include README.md
include CHANGELOG.md
include LICENSE
include CI_CD_SUMMARY.md
include COMPLETION_SUMMARY.md
# Include configuration files
include pyproject.toml
include .ruff.toml
# Include documentation
recursive-include docs *.md *.rst *.txt *.py
recursive-include docs/_static *
recursive-include docs/_templates *
# Include examples
recursive-include examples *.py *.md *.txt *.json *.yaml *.yml
# Include benchmarks
recursive-include benchmarks *.py *.md *.txt *.json
# Include test data and fixtures
recursive-include tests *.py *.json *.yaml *.yml *.txt
recursive-include tests/fixtures *
recursive-include tests/data *
# Include stubs for type checking
recursive-include stubs *.pyi
# Include assets and images
recursive-include assets *.png *.jpg *.jpeg *.svg *.gif
recursive-include assets *.ico *.pdf
# Include scripts
recursive-include scripts *.py *.sh *.bat *.ps1
# Include hardware specifications and documentation
recursive-include hardware_specs *.md *.txt *.json *.yaml *.yml
# Include calibration data templates
recursive-include calibration_templates *.json *.yaml *.yml
# Exclude development and build artifacts
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
global-exclude *.so
global-exclude .pytest_cache
global-exclude .mypy_cache
global-exclude .ruff_cache
global-exclude htmlcov
global-exclude .coverage
global-exclude .tox
global-exclude .nox
global-exclude build
global-exclude dist
global-exclude *.egg-info
# Exclude IDE files
global-exclude .vscode
global-exclude .idea
global-exclude *.swp
global-exclude *.swo
global-exclude *~
# Exclude temporary and log files
global-exclude *.log
global-exclude *.tmp
global-exclude *.temp
global-exclude temp_*
global-exclude *_temp
# Exclude large data files that shouldn't be in the package
global-exclude *.hdf5
global-exclude *.h5
global-exclude *.pkl
global-exclude *.pickle
global-exclude *.npy
global-exclude *.npz
global-exclude *.zip
global-exclude *.tar.gz
global-exclude *.rar
global-exclude *.7z
# Exclude raw image files
global-exclude *.raw
global-exclude *.dng
global-exclude *.cr2
global-exclude *.nef
global-exclude *.arw
global-exclude *.tif
global-exclude *.tiff
# Exclude environment and configuration files
global-exclude .env
global-exclude .env.*
global-exclude config.ini
global-exclude secrets.yaml
global-exclude api_keys.txt