-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
78 lines (66 loc) · 1.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lance-ray"
version = "0.2.0"
description = "Ray integration for Lance"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [{ name = "LanceDB Devs", email = "dev@lancedb.com" }]
keywords = ["ray", "lance", "distributed", "columnar", "data"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ray[data]>=2.41.0",
"pylance>=2.0.0",
"lance-namespace",
"pyarrow>=17.0.0",
"more_itertools>=2.6.0; python_version<'3.12'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"pytest-cov>=5.0.0",
"pytest-xdist>=3.6.0",
"ruff>=0.8.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocs-awesome-pages-plugin>=2.9.0",
]
[project.urls]
Homepage = "https://github.com/lancedb/lance-ray"
Repository = "https://github.com/lancedb/lance-ray"
[tool.setuptools.packages.find]
where = ["."]
include = ["lance_ray*"]
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["lance_ray", "tests", "examples"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP", "SIM"]
ignore = ["E501", "UP045"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--cov=lance_ray", "--cov-report=term-missing"]
[tool.coverage.run]
source = ["lance_ray"]
omit = ["*/tests/*", "*/__init__.py"]
[tool.uv]
extra-index-url = ["https://pypi.fury.io/lance-format"]
index-strategy = "unsafe-best-match"