-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.81 KB
/
pyproject.toml
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
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "llm-mediator-simulation"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = []
authors = [{ name = "Thibaut de Saivre", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"accelerate",
"asyncio",
"bitsandbytes",
"click",
"Flask",
"google-cloud-aiplatform",
"google-generativeai",
"httpx",
"huggingface_hub[cli]",
"ipykernel",
"matplotlib",
"mistralai",
"openai",
"perspective",
"polars",
"python-dotenv",
"rich",
"transformers",
]
[project.urls]
Documentation = "https://github.com/LSIR/llm-mediator-simulation#readme"
Issues = "https://github.com/LSIR/llm-mediator-simulation/issues"
Source = "https://github.com/LSIR/llm-mediator-simulation"
[tool.hatch.version]
path = "src/llm_mediator_simulation/__about__.py"
[tool.hatch.envs.default]
type = "virtual"
path = "venv"
python = "3.12"
[tool.hatch.envs.types]
extra-dependencies = ["pyright>=1.1.0"]
[tool.hatch.envs.types.scripts]
check = "pyright {args:src/llm_mediator_simulation tests}"
[tool.coverage.run]
source_pkgs = ["llm_mediator_simulation", "tests"]
branch = true
parallel = true
omit = ["src/llm_mediator_simulation/__about__.py"]
[tool.coverage.paths]
llm_mediator_simulation = [
"src/llm_mediator_simulation",
"*/llm-mediator-simulation/src/llm_mediator_simulation",
]
tests = ["tests", "*/llm-mediator-simulation/tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]