-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathMANIFEST.in
More file actions
33 lines (29 loc) · 742 Bytes
/
MANIFEST.in
File metadata and controls
33 lines (29 loc) · 742 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
# Include source files for C extension
include bplustree_c_src/*.c
include bplustree_c_src/*.h
# Include documentation
include README.md
include LICENSE
recursive-include docs *.md
recursive-include examples *.py
# Include test files in source distribution
recursive-include tests *.py
include conftest.py
# Include configuration files
include pyproject.toml
include setup.py
include *.cfg
include *.ini
# Exclude build artifacts and temporary files
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
global-exclude *.o
global-exclude .pytest_cache
recursive-exclude tmp *
recursive-exclude build *
recursive-exclude dist *
recursive-exclude *.egg-info *