-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
86 lines (71 loc) · 2.41 KB
/
Copy pathMANIFEST.in
File metadata and controls
86 lines (71 loc) · 2.41 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# ============================================================================
# MANIFEST.in - Source Distribution File Inclusion
# ============================================================================
# ============================================================================
# Documentation and Metadata
# ============================================================================
include README.md
include LICENSE.md
include pyproject.toml
include setup.py
# py.typed marker for PEP 561 compliance
recursive-include src py.typed
# ============================================================================
# Build Scripts (for users building from source)
# ============================================================================
include scripts/build-rocksdb-linux.sh
include scripts/build-rocksdb-macos.sh
include scripts/rocksdb-cstdint.patch
# ============================================================================
# rdbpy Package Files
# ============================================================================
# Cython source files (.pyx, .pxd)
recursive-include src/rdbpy *.pyx
recursive-include src/rdbpy *.pxd
# C++ wrapper headers
recursive-include src/rdbpy/include *.hpp
recursive-include src/rdbpy/include *.h
# Python type stubs
recursive-include src/rdbpy *.pyi
# Python files
recursive-include src/rdbpy *.py
# ============================================================================
# Tests
# ============================================================================
recursive-include tests *.py
# ============================================================================
# Exclusions
# ============================================================================
# Exclude compiled files
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
# Exclude Cython-generated C/C++ files
global-exclude *.c
global-exclude *.cpp
# Exclude build artifacts
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
prune build
prune dist
prune *.egg-info
# Exclude IDE and editor files
global-exclude .DS_Store
global-exclude *.swp
global-exclude *.swo
global-exclude *~
prune .vscode
prune .idea
# Exclude version control
prune .git
global-exclude .gitignore
global-exclude .gitattributes
# Exclude CI/CD that users don't need
prune .github
exclude .pre-commit-config.yaml
# Exclude development files
exclude .coveragerc
exclude .ruff_cache
prune htmlcov