forked from Mirix-AI/MIRIX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
42 lines (34 loc) · 911 Bytes
/
MANIFEST.in
File metadata and controls
42 lines (34 loc) · 911 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
# Include the README and LICENSE
include README.md
include LICENSE
# Include configuration files
recursive-include configs *.yaml *.yml
recursive-include mirix/configs *.yaml *.yml
# Include prompt templates
recursive-include mirix/prompts *.txt *.yaml *.yml
# Include any schema files
recursive-include mirix/schemas *.json *.yaml *.yml
# Include assets for the package
recursive-include assets *.png *.jpg *.jpeg *.gif *.ico
# Exclude development and build files
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
global-exclude .git*
# Exclude frontend and other non-Python directories
prune frontend
prune public_evaluations
prune scripts
prune mirix_env
prune .git
# Exclude test files
prune tests
global-exclude test_*.py
global-exclude *_test.py
# Exclude build artifacts
prune build
prune dist
prune *.egg-info