-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.19 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
[tool.poetry]
name = "facilito"
version = "0.4.0"
description = "simple api to scrape data from codigo facilito"
authors = ["ivansaul"]
readme = "README.md"
packages = [{include = "facilito", from = "src"}]
[tool.poetry.scripts]
facilito = "facilito.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
pytest-playwright = "^0.5.2"
pydantic = "^2.10.0"
typer = "^0.13.0"
colorlog = "^6.9.0"
unidecode = "^1.3.8"
playwright-stealth = {git = "https://github.com/Mattwmaster58/playwright_stealth"}
aiohttp = "^3.11.7"
aiofiles = "^24.1.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.4"
pre-commit = "^4.0.1"
mypy = "^1.13.0"
python-semantic-release = "^9.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
preview = true
fixable = ["ALL"]
select = ['E', 'F', 'W', 'I']
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[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 = false
upload_to_release = true
commit_version_number = true