-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 815 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
[tool.poetry]
name = "wv_cdm_api"
version = "1.0.0"
description = "Remote Widevine CDM API for Chrome"
authors = ["Puyodead1 <14828766+Puyodead1@users.noreply.github.com>"]
license = "AGPL-3.0-only"
packages = [
{ include = "api" }
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
Flask = "^2.2.2"
Cerberus = "^1.3.4"
toml = "^0.10.2"
pycryptodomex = "^3.15.0"
coloredlogs = "^15.0.1"
protobuf = "3.20.0"
dunamai = "^1.13.2"
psutil = "^5.9.3"
humanize = "^4.4.0"
requests = "^2.28.1"
waitress = "^2.1.2"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
black = "^22.10.0"
[tool.poetry.scripts]
serve = 'api.main:main'
waitress = 'api.main:waitress'
gensecret = 'api.gensecret:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"