Skip to content

Commit de21c26

Browse files
Edit pyproject.toml to include .cpp files for ColBERT-2
1 parent 7ff18f3 commit de21c26

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ build-backend = "setuptools.build_meta"
66
where = ["."]
77
include = ["rankify*"]
88

9+
[tool.setuptools.package-data]
10+
"rankify.utils.retrievers.colbert.colbert.indexing.codecs" = ["*.cpp", "*.cu", "*.h"]
11+
912
[project]
1013
name = "rankify"
11-
version = "0.1.0.post3"
14+
version = "0.1.0.post4"
1215
description = "A Comprehensive Python Toolkit for Retrieval, Re-Ranking, and Retrieval-Augmented Generation"
1316
readme = "README-PyPI.md"
1417
requires-python = ">=3.10"

rankify/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
__version_tuple__: VERSION_TUPLE
1313
version_tuple: VERSION_TUPLE
1414

15-
__version__ = version = '0.1.0.post3'
16-
__version_tuple__ = version_tuple = (0, 1, '0', 'post3')
15+
__version__ = version = '0.1.0.post4'
16+
__version_tuple__ = version_tuple = (0, 1, '0', 'post4')

0 commit comments

Comments
 (0)