-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (31 loc) · 960 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
37
[project]
name = "enka-api"
version = "2.2.7"
description = "Async API wrapper for Enka Network written in Python, supports GI and HSR."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles>=24.1.0",
"aiohttp-client-cache[sqlite]>=0.12.3",
"aiohttp>=3.10.9",
"orjson>=3.10.7",
"pydantic>=2.9.2",
]
authors = [{ "name" = "seriaati", "email" = "seria.ati@gmail.com" }]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/seriaati/enka-py"
Repository = "https://github.com/seriaati/enka-py.git"
Issues = "https://github.com/seriaati/enka-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["enka"]
[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"]