-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.11 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
[project]
name = "python-template"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Miyamura80", email = "eitomiyamura@gmail.com" }
]
dependencies = [
"black>=24.8.0",
"pyyaml>=6.0.2",
"python-dotenv>=1.0.1",
"human-id>=0.2.0",
"pytest>=8.3.3",
"termcolor>=2.4.0",
"loguru>=0.7.3",
"vulture>=2.14",
"dspy>=2.6.24",
"langfuse>=2.60.5",
"litellm>=1.70.0",
"tenacity>=9.1.2",
"pillow>=11.2.1",
"google-genai>=1.15.0",
"ty>=0.0.1a9",
"pytest-env>=1.1.5",
"pydantic-settings>=2.12.0",
"requests>=2.31.0",
"typer[all]>=0.12.3",
]
readme = "README.md"
requires-python = ">= 3.12"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.scripts]
eito = "src.cli.main:app"
[tool.vulture]
exclude = [
".venv/",
"tests/**/test_*.py",
"tests/test_template.py",
"utils/llm/",
"common/",
"src/utils/logging_config.py",
"src/utils/context.py",
"tests/conftest.py"
]