-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (44 loc) · 1.36 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
[tool.poetry]
name = "tidal-async"
version = "0.1.0"
description = "Python Tidal streaming service unofficial API in async fashion supporting OAuth2 authentication"
authors = ["JuniorJPDJ <[email protected]>", "Kasper Seweryn <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.6"
music-service-async-interface = { git = "https://github.com/FUMR/music-service-async-interface.git", rev = "cf76aaaec6eb53a33d781f05346c6052f00b5646" }
androguard = { version = "^4.0.0", optional = true }
http-seekable-file = { git = "https://github.com/JuniorJPDJ/http-seekable-file.git", tag = "v0.4.0", extras = ["async"], optional = true }
[tool.poetry.dev-dependencies]
pre-commit = "^4.0.0"
pytest = "^8.0.0"
pytest-asyncio = "^0.25.0"
[tool.poetry.extras]
client_id = ["androguard"]
filelike = ["http-seekable-file"]
# TODO [#18]: Make `filelike` extra depend on `music-service-async-interface['filelike']`, not directly on `http-seekable-file['async']`
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tmp
)/
'''
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
known_third_party = ["aiohttp", "music_service_async_interface", "mutagen"]