-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathMANIFEST.in
More file actions
34 lines (30 loc) · 842 Bytes
/
MANIFEST.in
File metadata and controls
34 lines (30 loc) · 842 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
# Include essential files
include README.md
include LICENSE
include CITATION.cff
include requirements.txt
include pyproject.toml
# Include B3DB package data
recursive-include B3DB *.tsv *.tsv.gz *.csv
# Exclude data_curation folder and all its contents
global-exclude data_curation/
global-exclude data_curation/*
global-exclude data_curation/**/*
# Exclude notebooks folder and all its contents
global-exclude notebooks/
global-exclude notebooks/*
global-exclude notebooks/**/*
# Exclude common build artifacts and cache files
global-exclude *.pyc
global-exclude __pycache__
global-exclude *.egg-info
global-exclude .git*
global-exclude .github
global-exclude build
global-exclude dist
global-exclude .tox
global-exclude .pytest_cache
global-exclude .coverage
global-exclude htmlcov
global-exclude .mypy_cache
global-exclude .ruff_cache