-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 1.04 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
[tool.poetry]
name = "pixaris"
version = "0.11.2"
description = "Evaluation framework for image generation"
authors = ["Team TIGA"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pillow = ">=11.3.0"
scikit-learn = "^1.6.1"
click = "^8.1.8"
decorator = "5.2.1"
db-dtypes = "^1.4.2"
brotli = "^1.1.0"
gradio = "^6.9.0"
[tool.poetry.group.gcp.dependencies]
google-cloud-storage = "^2.18.2"
google-cloud-bigquery = "^3.31.0"
google-genai = "^1.14.0"
google-cloud-aiplatform = {version = "^1.133.0", extras = ["all"]}
[tool.poetry.group.cluster.dependencies]
kubernetes = ">=32.0.1,<36.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = ">=0.11.2,<0.16.0"
poetry-plugin-export = "^1.8.0"
pytest = ">=8.3.4,<10.0.0"
ipykernel = ">=6.29.5,<8.0.0"
sphinx = ">=8.1.3,<10.0.0"
sphinx-rtd-theme = "^3.0.2"
myst-parser = ">=4.0.1,<6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pixaris-orchestration-kubernetes = 'pixaris.orchestration.kubernetes:cli'