-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 836 Bytes
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
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "msoc"
version = "0.2.1"
description = "Быстрый поисковик музыки"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"bs4",
"aiohttp",
"lxml",
]
[project.urls]
GitHub = "https://github.com/paranoik1/msoc"
[project.scripts]
msoc = "msoc.__main__:execute"
[tool.poetry]
package-mode = true
[dependency-groups]
dev = [
"black>=24.0",
"mypy>=1.8",
"isort (>=8.0.1,<9.0.0)",
"pytest (>=9.0.3,<10.0.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]