forked from Miyamura80/Python-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1021 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
47
48
49
50
[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",
]
readme = "README.md"
requires-python = ">= 3.12"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/python_template"]
[tool.vulture]
exclude = [
".venv/",
"tests/**/test_*.py",
"tests/test_template.py",
"utils/llm/",
"global_config/global_config.py",
"src/utils/logging_config.py",
"tests/conftest.py"
]