-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMANIFEST.in
More file actions
38 lines (32 loc) · 1.06 KB
/
MANIFEST.in
File metadata and controls
38 lines (32 loc) · 1.06 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
# Include package data files
include querygym/prompt_bank.yaml
include querygym/config/*.yaml
# Include documentation
include README.md
include LICENSE
include CONTRIBUTING.md
include Structure.md
# Include examples
recursive-include examples *.py *.tsv *.ipynb
# Include docs
recursive-include docs *.md
# Exclude reproducibility umbrella and (preemptive) future web/ from sdist.
# These are repo-only artifacts; nothing in them belongs in the PyPI source dist.
prune reproducibility
prune web
# Belt-and-suspenders: explicit exclude for workspace files that would never
# match a default include rule but shouldn't sneak in via a future MANIFEST sweep.
exclude package.json pnpm-workspace.yaml pnpm-lock.yaml package-lock.json yarn.lock
global-exclude node_modules
global-exclude .astro
# Exclude development and build artifacts
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .DS_Store
global-exclude *.egg-info
global-exclude *.so
global-exclude .pytest_cache
global-exclude htmlcov
global-exclude .coverage
global-exclude .mypy_cache
global-exclude .ruff_cache