forked from terrene-foundation/kailash-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
60 lines (52 loc) · 1.14 KB
/
MANIFEST.in
File metadata and controls
60 lines (52 loc) · 1.14 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
# Include important files
include README.md
include LICENSE
include NOTICE
include PATENTS
include pyproject.toml
include setup.py
include setup.cfg
# Include source code
recursive-include src *.py
recursive-include src *.pyi
recursive-include src *.sql
recursive-include src py.typed
# Exclude all non-essential directories
prune tests
prune docs
prune guide
prune outputs
prune workflow_executions
# Exclude Sphinx build artifacts
prune docs/_build
prune guide/_build
# Exclude internal documentation and development files
exclude CLAUDE.md
exclude CONTRIBUTING.md
exclude RELEASE_ANNOUNCEMENT.md
exclude CHANGELOG.md
exclude pytest.ini
exclude Makefile
exclude workflow_changes_summary.md
# Exclude build artifacts
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .DS_Store
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
# Exclude version control
prune .git
prune .github
exclude .gitignore
exclude .gitattributes
# Exclude development files
exclude .pre-commit-config.yaml
exclude uv.lock
prune .venv
prune .pytest_cache
prune .ruff_cache
prune .mypy_cache
# Exclude temporary files
prune outputs
prune workflow_executions