mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2026-04-28 03:39:48 +00:00
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
37 lines
875 B
Text
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
|