-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
61 lines (53 loc) · 1.39 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
[tool.poetry]
name = "platzi"
version = "0.4.1"
description = "Download your courses from platzi"
authors = ["ivansaul <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ivansaul/platzi-downloader"
repository = "https://github.com/ivansaul/platzi-downloader"
keywords = ["Platzi", "downloader", "courses"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "platzi", from = "src" }
]
[tool.poetry.scripts]
platzi = "platzi.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.13.0"
pydantic = "^2.9.2"
pyhumps = "^3.8.0"
aiohttp = "^3.11.2"
tqdm = "^4.67.0"
pytest-playwright = "^0.5.2"
unidecode = "^1.3.8"
platformdirs = "^4.3.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ruff = "^0.7.4"
ipykernel = "^6.29.5"
python-semantic-release = "^9.14.0"
mypy = "^1.13.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
preview = true
select = ['E', 'F', 'W', 'I']
ignore = ["E501"]
[tool.semantic_release]
version_source = "tag"
version_toml = ["pyproject.toml:tool.poetry.version"]
branch = "master"
build_command = "pip install poetry && poetry build"
major_on_zero = true
allow_zero_version = true
upload_to_pypi = true
upload_to_release = true
commit_version_number = true