-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 901 Bytes
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
[project]
name = "verina"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "LEAFERx", email = "leaferx@outlook.com" }
]
requires-python = ">=3.11"
dependencies = [
"datasets>=3.4.0",
"dspy==3.1.2",
"google-cloud-aiplatform>=1.92.0",
"ipykernel>=6.29.5",
"jinja2>=3.1.6",
"langfuse>=2.60.3",
"loguru>=0.7.3",
"matplotlib>=3.10.0",
"pandas>=2.2.3",
"prefect==3.4.1",
"pydantic>=2.10.6",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.1",
"rich>=13.9.4",
"seaborn>=0.13.2",
"setuptools>=75.8.0",
"tqdm>=4.67.1",
"typer>=0.15.1",
"vllm>=0.8.0",
]
[project.scripts]
verina = "verina:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.9.3",
]
[tool.ruff]
extend-exclude = ["datasets"]