-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
71 lines (66 loc) · 1.44 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
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "lidarrmetadata"
version = "0.1.0"
description = "Lidarr metadata API"
authors = ["Lidarr <[email protected]>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = ">=3.9,<4"
aiocache = "0.11.1"
aiofiles = "0.6.0"
aiohttp = "3.7.3"
aioredis = "1.3.1"
async-timeout = "3.0.1"
asyncpg = "0.26.0"
attrs = "21.4.0"
beautifulsoup4 = "4.9.3"
billboard-py = "7.0.0"
blinker = "1.5"
certifi = "2022.12.7"
chardet = "3.0.4"
click = "7.1.2"
flask = "1.1.2"
gunicorn = "20.0.4"
h11 = "0.11.0"
h2 = "4.0.0"
hiredis = "1.1.0"
hpack = "4.0.0"
httptools = "0.1.1"
hypercorn = "0.13.2"
hyperframe = "6.0.1"
idna = "2.10"
itsdangerous = "2.0.0a1"
jinja2 = "3.0.0a1"
markupsafe = "2.0.0a1"
multidict = "5.1.0"
priority = "1.3.0"
pylast = "4.3.0"
pytelegraf = "0.3.3"
python-dateutil = "2.8.2"
python-levenshtein = "0.12.2"
pytz = "2022.7"
quart = "0.14.1"
redis = "3.5.3"
requests = "2.25.1"
sentry-sdk = "0.19.5"
six = "1.15.0"
soupsieve = "2.3.2.post1"
spotipy = "2.16.1"
toml = "0.10.2"
typing-extensions = "3.7.4.3"
urllib3 = "1.26.9"
uvicorn = "0.20.0"
uvloop = "0.14.0"
werkzeug = "1.0.1"
wsproto = "1.1.0"
yarl = "1.6.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.5.post1"
mockredispy = "^2.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
lidarr-metadata-server = "lidarrmetadata.server:main"
lidarr-metadata-crawler = "lidarrmetadata.crawler:main"