-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMANIFEST.in
More file actions
72 lines (52 loc) · 1.58 KB
/
MANIFEST.in
File metadata and controls
72 lines (52 loc) · 1.58 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
# Include all Python files
recursive-include superoptix *.py
# Include all YAML files (agent playbooks, configs)
recursive-include superoptix *.yaml
recursive-include superoptix *.yml
# Include all JSON files
recursive-include superoptix *.json
# Include all template files
recursive-include superoptix/templates *
# Include all agent playbooks
recursive-include superoptix/agents *
# Include all tool definitions
recursive-include superoptix/tools *
# Include all configuration files
recursive-include superoptix/config *
# Include all metaspecs
recursive-include superoptix/metaspecs *
# Include all superspec files
recursive-include superoptix/superspec *
# Include all UI files
recursive-include superoptix/ui *
# Include all adapter files
recursive-include superoptix/adapters *
# Include all validator files
recursive-include superoptix/validators *
# Include all runners
recursive-include superoptix/runners *
# Include all models
recursive-include superoptix/models *
# Include all memory systems
recursive-include superoptix/memory *
# Include all observability files
recursive-include superoptix/observability *
# Include all CLI files
recursive-include superoptix/cli *
# Include all core files
recursive-include superoptix/core *
# Include all compiler files
recursive-include superoptix/compiler *
# Include README and documentation
include README.md
include LICENSE
include LICENCE
# Exclude development files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll