-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathMANIFEST.in
More file actions
44 lines (37 loc) · 1.09 KB
/
MANIFEST.in
File metadata and controls
44 lines (37 loc) · 1.09 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
# Include all source files for building
include pyproject.toml
include setup.py
include README.md
include LICENSE
include CONTRIBUTING.md
include SECURITY.md
# Include all Cython source files
recursive-include opteryx *.pyx
recursive-include opteryx *.pxd
recursive-include third_party *.pyx
recursive-include third_party *.pxd
# Include all header files for draken
recursive-include third_party/mabel/draken *.h
# Include C++ implementation files for draken
recursive-include third_party/mabel/draken *.cpp
# Include other vendored sources needed for compilation
recursive-include src *.h
recursive-include src *.cpp
recursive-include src *.c
# Include vendored third-party libraries
recursive-include third_party/abseil *.h
recursive-include third_party/apache *.h
recursive-include third_party/re2 *.h *.cc
recursive-include third_party/fastfloat *.h
# Exclude compiled files and caches
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
global-exclude __pycache__
global-exclude .DS_Store
# Exclude build artifacts
prune build
prune dist
prune *.egg-info