-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.14 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "maxsim-cpu"
version = "0.1.0"
description = "Fast CPU implementation of MaxSim scoring"
requires-python = ">=3.8"
dependencies = ["numpy>=1.20"]
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "Benjamin Clavié"}, {name = "Mixedbread Team"}]
keywords = ["maxsim", "similarity", "ranking", "cpu", "simd", "performance"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
"Homepage" = "https://github.com/mixedbread-ai/maxsim-cpu"
"Bug Tracker" = "https://github.com/mixedbread-ai/maxsim-cpu/issues"
[tool.maturin]
features = ["pyo3/extension-module"]