-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.47 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
[tool.poetry]
name = "lavender-data"
version = "0.1.10"
description = "Load & evolve datasets efficiently"
authors = [
"Hanch Han <cndghks15@gmail.com>"
]
repository = "https://github.com/fal-ai/lavender-data"
documentation = "https://docs.lavenderdata.com"
license = "Apache-2.0"
readme = "README.md"
packages = [
{include = "lavender_data", from = "."},
{include = "openapi_lavender_data_rest", from = "./openapi-lavender-data-rest"},
]
[tool.poetry.urls]
Changelog = "https://docs.lavenderdata.com/release-notes"
[tool.poetry.scripts]
lavender-data = "lavender_data.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
numpy = "=2.1.2"
pyarrow = "=19.0.1"
ujson = "^5.10.0"
fastapi = {version = "0.115.6", extras = ["standard"]}
sqlmodel = "^0.0.23"
httpx = ">=0.20.0,<0.29.0"
attrs = ">=22.2.0"
python-dateutil = "^2.8.0"
pydantic-settings = "^2.8.1"
python-daemon = "^3.1.2"
alembic = "^1.15.2"
# extras
psycopg2-binary = "^2.9.10"
redis = {extras = ["hiredis"], version = "^5.2.1"}
boto3 = "^1.38.13"
webdataset = "^0.2.111"
huggingface-hub = "^0.31.1"
filetype = "^1.2.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "2.1.0"
flake8 = "7.0.0"
pytest = "8.1.1"
pytest-sugar = "1.0.0"
black = "^24.10.0"
openapi-python-client = "^0.24.0"
tqdm = "^4.67.1"
[build-system]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
s3 = ["boto3"]
hf = ["huggingface-hub"]
pgsql = ["psycopg2-binary"]
redis = ["redis"]
wds = ["webdataset"]