-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
34 lines (28 loc) · 781 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
34 lines (28 loc) · 781 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
# MANIFEST.in — include non-Python resources in source distribution
include LICENSE
include README.md
include CLAUDE.md
# Skills (built-in skill definitions distributed with the language)
recursive-include helen/skills *.md
# Agent program (Helen self-assistant)
recursive-include helen/agent *.helen
# PEP 561 marker
include helen/py.typed
# Exclude build/test artifacts
global-exclude *.py[cod]
global-exclude __pycache__
global-exclude *.so
prune .git
prune .github
prune tests
prune docs
prune examples
prune reports
prune wiki
prune vscode-extension
prune extensions
# Exclude frontend build artifacts (users install via npm)
prune helen/agent/webui/frontend/node_modules
prune helen/agent/webui/frontend/dist
global-exclude package-lock.json
global-exclude yarn.lock