-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 915 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
[project]
name = "simply-simplify-language"
version = "1.1.0"
description = "Use LLMs to simplify your institutional communication."
authors = [
{ name = "Statistisches Amt Kanton Zürich, Team Data", email = "datashop@statistik.zh.ch" },
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"zix @ git+https://github.com/machinelearningZH/zix_understandability-index@1d0eaa9692413f6581f7534c7402618b92637dca",
"de-core-news-sm @ https://github.com/explosion/spacy-models/releases/download/de_core_news_sm-3.8.0/de_core_news_sm-3.8.0-py3-none-any.whl",
"pyarrow>=22.0.0",
"python-docx>=1.2.0",
"python-dotenv>=1.2.1",
"pyyaml>=6.0.3",
"streamlit>=1.55.0",
"openai>=2.29.0",
]
[tool.uv]
exclude-newer = "7 days"
[tool.ruff.lint]
ignore = ["E402"]
[tool.pytest.ini_options]
pythonpath = ["."]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.12",
]