-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (30 loc) · 920 Bytes
/
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
[project]
name = "akasha-py"
version = "0.2.10"
description = "Async API wrapper for akasha.cv written in Python"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.10.5",
"aiohttp-client-cache[sqlite]>=0.11.1",
"loguru>=0.7.2",
"pydantic>=2.9.2",
]
authors = [{ "name" = "seriaati", "email" = "seria.ati@gmail.com" }]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/seriaati/akasha-py"
Repository = "https://github.com/seriaati/akasha-py.git"
Issues = "https://github.com/seriaati/akasha-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["akasha"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.pyright]
typeCheckingMode = "standard"
[tool.uv]
dev-dependencies = ["pytest-asyncio>=0.24.0", "pytest>=8.3.3"]