-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.26 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
[tool.poetry]
name = "getwvkeys"
version = "0.1.2"
description = "Widevine License Proxy"
authors = [
"notaghost <[email protected]>",
"Puyodead1 <[email protected]>",
]
license = "AGPL-3.0-only"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Flask = "^2.2.5"
Flask-Login = "^0.6.1"
oauthlib = "3.2.2"
requests = "^2.31.0"
protobuf = "4.25.4"
pycryptodomex = "^3.14.1"
PyYAML = "^6.0"
coloredlogs = "^15.0.1"
dunamai = "^1.12.0"
python-dotenv = "^0.20.0"
Cerberus = "^1.3.4"
Flask-SQLAlchemy = ">=3.1.1"
gunicorn = "^20.1.0"
validators = "^0.20.0"
toml = "^0.10.2"
sqlalchemy = ">=2.0.16"
alembic = "^1.13.1"
mariadb = { version = "^1.1.10", optional = true }
mysql-connector-python = { version = "^8.4.0", optional = true }
pywidevine = "^1.8.0"
waitress = "^3.0.0"
click = "^8.1.7"
redis = "^5.2.0"
flask-caching = "^2.3.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
[tool.poetry.scripts]
serve = 'getwvkeys.main:main'
migrate = 'getwvkeys.main:run_migrations'
gwvk = 'getwvkeys.scripts:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.poetry.extras]
mysql = ["mysql-connector-python"]
mariadb = ["mariadb"]