-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
41 lines (36 loc) · 998 Bytes
/
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
[tool.poetry]
name = "kisskh-downloader"
version = "0.1.0"
description = "Simple downloaded for https://kisskh.co/"
readme = "README.md"
authors = ["Debakar Roy <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.3"
requests = "^2.28.2"
pydantic = "^1.10.5"
validators = "^0.20.0"
yt-dlp = "^2023.2.17"
pysrt = "^1.1.2"
python-dotenv = "^1.0.0"
cryptography = "^41.0.7"
[tool.poetry.dev-dependencies]
datamodel-code-generator = { extras = ["http"], version = "^0.17.1" }
flake8 = { version = "^6.0.0", python = ">=3.8.1,<4.0" }
flake8-bugbear = "^23.2.13"
flake8-black = "^0.3.6"
flake8-bandit = "^4.1.1"
flake8-comprehensions = "^3.10.1"
flake8-isort = "^6.0.0"
pep8-naming = "^0.13.3"
pytest-cov = "^4.0.0"
mypy = "^1.0.1"
black = "^23.1.0"
types-requests = "^2.28.11.15"
[tool.black]
line-length = 120
[tool.poetry.scripts]
kisskh = "kisskh_downloader.cli:kisskh"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"