-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
39 lines (36 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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11>=2.10.0"]
build-backend = "scikit_build_core.build"
[project]
name = "pdxearch"
version = "0.4"
description = "PDX: A Library for Fast Vector Search and Indexing"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "CWI", email = "lxkr@cwi.nl"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
"Operating System :: Unix",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
]
[project.urls]
Homepage = "https://github.com/cwida/PDX"
Repository = "https://github.com/cwida/PDX"
[tool.scikit-build]
cmake.source-dir = "."
wheel.packages = ["python/pdxearch"]
cmake.build-type = "Release"