-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
63 lines (58 loc) · 1.28 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["tubee", "migrations"]
[tool.poetry]
name = "tubee"
version = "0.15.1"
description = "A Web Application for Monitoring New YouTube Videos"
license = "MIT License"
authors = ["Tomy Hsieh <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/tomy0000000/Tubee"
repository = "https://github.com/tomy0000000/Tubee"
documentation = "https://github.com/tomy0000000/Tubee/wiki"
[tool.poetry.dependencies]
python = "^3.9.15"
Authlib = "*"
Flask = "*"
Flask-Bcrypt = "*"
Flask-Login = "*"
Flask-Migrate = "*"
Flask-SQLAlchemy = "*"
Flask-WTF = "*"
WTForms = "*"
Werkzeug = "*"
beautifulsoup4 = "*"
celery = "*"
click = "*"
dropbox = "*"
google-api-python-client = "*"
google-auth = "*"
google-auth-oauthlib = "*"
gunicorn = "*"
lxml = "^4.9.1"
psycopg2 = "*"
pushover-complete = "*"
python-dateutil = "^2.8.2"
requests = "*"
youtube-dl = "*"
sentry-sdk = {extras = ["flask"], version = "^1.5.0"}
loguru = "^0.6.0"
[tool.poetry.group.dev.dependencies]
argh = "*"
codecov = "*"
coverage = "*"
flask-shell-ipython = "*"
pyyaml = "*"
rope = "*"
watchdog = "*"
flake8 = "^4.0.1"
black = "^22.6.0"
[tool.pyright]
include = ["tubee"]
exclude = [
"**/__pycache__",
]