kvcache-ai-ktransformers/kt-kernel/MANIFEST.in
Jianwei Dong 1f79f6da92
Some checks failed
Book-CI / test (push) Waiting to run
Book-CI / test-1 (push) Waiting to run
Book-CI / test-2 (push) Waiting to run
Deploy / deploy (macos-latest) (push) Waiting to run
Deploy / deploy (ubuntu-latest) (push) Waiting to run
Deploy / deploy (windows-latest) (push) Waiting to run
Release Fake Tag / publish (push) Has been cancelled
Release to PyPI / Build kt-kernel CPU-only (Python 3.10) (push) Has been cancelled
Release to PyPI / Build kt-kernel CPU-only (Python 3.11) (push) Has been cancelled
Release to PyPI / Build kt-kernel CPU-only (Python 3.12) (push) Has been cancelled
Release to PyPI / Publish to PyPI (push) Has been cancelled
[feat](kt-kernel): Add automatic deployment workflow (#1719)
2025-12-16 15:20:06 +08:00

37 lines
875 B
Text

# MANIFEST.in for kt-kernel
# Ensures source distribution includes all necessary files for building from source
# Core build files
include CMakeLists.txt
include CMakePresets.json
include setup.py
include pyproject.toml
include requirements.txt
include README.md
include LICENSE
# CMake modules and configuration
recursive-include cmake *.cmake *.in
# C++ source files
recursive-include cpu_backend *.h *.hpp *.cpp *.c *.cc
recursive-include operators *.h *.hpp *.cpp *.c *.cc
include ext_bindings.cpp
# Python package
recursive-include python *.py
# Third-party dependencies (vendored)
recursive-include third_party *
# Exclude compiled and cache files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .git*
global-exclude *.so
global-exclude *.o
global-exclude *.a
global-exclude build
global-exclude dist
global-exclude *.egg-info