-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.22 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
[project]
name = "py-presencedb"
version = "2.0.2"
description = "API wrapper for the presencedb (undocumented) api"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiofile>=3.9.0",
"aiohttp>=3.11.8",
"humanize>=4.11.0",
"msgspec",
"yarl>=1.18.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["presencedb"]
[tool.uv.sources]
msgspec = { git = "https://github.com/jcrist/msgspec.git", rev = "main" }
[dependency-groups]
dev = [
"asyncio>=3.4.3",
"pre-commit>=4.0.1",
"rich>=13.9.4",
"ruff>=0.8.6",
]
[project.optional-dependencies]
test = ["pytest>=8.3.4",
"pytest-asyncio>=0.25.1",
"pytest-profiling>=1.8.1"
]
docs = ["sphinx>=8.1.3",
"sphinxcontrib-trio>=1.1.2",
"sphinxcontrib-websupport>=2.0.0",
"typing-extensions>=4.12.2"
]
[tool.ruff.lint]
ignore = ["F403", "E501"]
[tool.ruff.lint.per-file-ignores]
"docs/conf.py" = ["E402"]
"docs/extensions/attributetable.py" = ["F402"]
[tool.pytest.ini_options]
pythonpath = [
"."
]
console_output_style = "progress"
required_plugins = ["pytest-profiling"]
log_cli = true
testpaths = ["tests"]
python_files = ["test_*.py"]