-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMANIFEST.in
More file actions
43 lines (35 loc) · 956 Bytes
/
MANIFEST.in
File metadata and controls
43 lines (35 loc) · 956 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
41
42
43
# Include important project files
include README.md
include LICENSE
include pyproject.toml
include Cargo.toml
include Cargo.lock
# Include Rust source code
recursive-include engine *.rs *.toml
recursive-include bindings *.rs *.toml
# Include Python source
recursive-include minitensor *.py *.pyi *.typed
# Include documentation
recursive-include docs *.md *.rst *.txt
# Include examples
recursive-include examples *.py *.rs *.toml *.md
# Include tests
recursive-include tests *.py
include test_*.py
# Include build scripts
recursive-include scripts *.py
# Include CI/CD configuration
recursive-include .github *.yml *.yaml
# Exclude build artifacts and cache
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .pytest_cache
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
recursive-exclude target *
recursive-exclude .git *
recursive-exclude .vscode *
recursive-exclude .idea *