forked from snap-stanford/Biomni
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
27 lines (21 loc) · 694 Bytes
/
MANIFEST.in
File metadata and controls
27 lines (21 loc) · 694 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
# MANIFEST.in
# Include all python files from the biomni package
recursive-include biomni *.py
# Include the .pkl database files
recursive-include biomni/tool/schema_db *.pkl
# Include specific files from biomni_env, but not the biomni_tools subdirectory
recursive-include biomni_env *.py *.sh *.yml *.yaml *.txt *.md *.json *.R
# Exclude specific directories that are not part of the package
prune tutorials/data
prune biomni_env/biomni_tools
# Exclude build artifacts and caches
global-exclude *.py[co]
global-exclude __pycache__
global-exclude .ruff_cache
prune build
prune dist
prune *.egg-info
# Include other necessary files
include README.md
include LICENSE
include pyproject.toml