-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.77 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
60
61
[tool.poetry]
name = "aioslsk"
version = "v1.4.1"
description = "Asyncio based SoulSeek client"
authors = ["JurgenR <[email protected]>"]
repository = "https://github.com/JurgenR/aioslsk/"
documentation = "https://readthedocs.org/projects/aioslsk/"
readme = "README.rst"
license = "GPL-3.0-or-later"
packages = [{include = "aioslsk", from = "src"}]
keywords = ["soulseek", "p2p", "async"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: File Sharing"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.14"
mutagen = "^1.47.0"
aiofiles = ">=22.1,<25.0"
async-upnp-client = ">=0.33,<0.42"
types-aiofiles = ">=23.2,<25.0"
pydantic-settings = "^2.4.0"
async-timeout = "^4.0.3"
typing-extensions = "^4.12.2"
multidict = "^6.0.5"
[tool.poetry.group.dev.dependencies]
flake8 = { version = ">=6,<8", python = ">=3.9.1,<3.14" }
mypy = "^1.11.2"
no-implicit-optional = "^1.4"
pytest = ">=7.4.2,<9.0.0"
pytest-cov = ">=4.1,<7.0"
pytest-unordered = ">=0.5.2,<0.7.0"
pytest-asyncio = ">=0.21.1,<0.25.0"
sphinx = "^7.0.0"
sphinx-rtd-theme = ">=2,<4"
autodoc-pydantic = { version = "^2.2.0", python = ">=3.9.1,<3.14" }
[tool.poetry.group.tools]
optional = true
[tool.poetry.group.tools.dependencies]
pyshark = "^0.6"
pyyaml = "^6.0.1"
yappi = "^1.4.0"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"