forked from lancedb/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.39 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "pylance"
dependencies = ["pyarrow>=10", "pandas>=1.4", "numpy>=1.22"]
description = "python wrapper for lance-rs"
authors = [
{ name = "Lance Devs", email = "[email protected]" },
]
license = { file = "LICENSE" }
repository = "https://github.com/eto-ai/lance"
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"data-format",
"data-science",
"machine-learning",
"arrow",
"data-analytics"
]
categories = [
"database-implementations",
"data-structures",
"development-tools",
"science"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering",
]
[tool.maturin]
python-source = "python"
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project.optional-dependencies]
tests = [
"pytest",
"duckdb",
"polars[pyarrow,pandas]",
]
[tool.isort]
profile = "black"