22 lines
417 B
TOML
22 lines
417 B
TOML
[project]
|
|
name = "ekilex-py"
|
|
version = "0.1.0"
|
|
authors = [
|
|
{ name = "Rasmus Moorats", email = "rasmus@moorats.ee" },
|
|
]
|
|
description = "Python wrapper for the Ekilex API"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"aiohttp[speedups]~=3.11",
|
|
"pydantic~=2.11",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["E501", "TD002", "TD003"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyright>=1.1.400",
|
|
]
|