-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
41 lines (37 loc) · 1.03 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
[tool.poetry]
name = "kodekloud-downloader"
version = "0.1.0"
description = "Simple downloaded for https://kodekloud.com/"
readme = "README.md"
authors = ["Roy, Debakar <[email protected]>"]
repository = "https://github.com/debakarr/kodekloud-downloader"
packages = [
{ include = "kodekloud_downloader", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.2"
beautifulsoup4 = "^4.12.2"
prettytable = "^3.7.0"
markdownify = "^0.11.6"
validators = "^0.20.0"
click = "^8.1.3"
yt-dlp = "^2023.3.4"
pydantic = "^2.9.1"
[tool.poetry.dev-dependencies]
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.poetry.scripts]
kodekloud = "kodekloud_downloader.cli:kodekloud"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"