-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
23 lines (22 loc) · 850 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "fast_vector_similarity"
version = "0.1.5"
description = "Compute various vector similarity metrics in Rust for Python, including bootstrapped/bagged robust estimators."
license = "MIT"
authors = [{ name = "Jeffrey Emanuel", email = "jeff@pastel.network" }]
readme = "README.md"
repository = "https://github.com/Dicklesworthstone/fast_vector_similarity"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]