-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (30 loc) · 870 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
35
36
37
[project]
name = "polars_candle"
version = "0.1.9"
requires-python = ">=3.9"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
urls = { repository = "https://github.com/wdoppenberg/polars-candle" }
keywords = ["polars", "dataframe", "embedding", "nlp", "candle"]
[tool.poetry]
name = "polars_candle"
version = "0.1.8"
description = "A text embedding extension for the Polars Dataframe library."
authors = ["Wouter Doppenberg <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
polars = "^0.20.0"
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
mypy = "*"
maturin = "*"
pytest = "*"
polars-distance = "*"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"