-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (32 loc) · 900 Bytes
/
pyproject.toml
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
[project]
name = "tinyknn"
version = "0.3"
description = "Approximate Nearest Neighbors in Python."
authors = [
{name="Thomas Dybdahl Ahle", email="[email protected]"}
]
license = {text = "AGPL-3.0-or-later"}
#license-file = "LICENSE"
readme = "README.md"
keywords = ["nns", "approximate nearest neighbor search"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"Cython>=0.29",
"numpy>=1.24",
"pytest>=7.2",
"scikit-learn>=1.2",
"tqdm>=4.65.0",
"scipy>=0.18",
]
[build-system]
requires = ["setuptools", "wheel", "Cython", "numpy"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://github.com/thomasahle/tinyknn/"