-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 885 Bytes
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 = "montblanc"
version = "0.4.0"
description = ""
authors = ["Wyko ter Haar <wyko.ter.haar@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
httpx = "^0.25.2"
cachetools = "^5.3.2"
tqdm = "^4.66.1"
# pyinstaller = "^6.3.0"
pytimes = "^1.11.0"
beautifulsoup4 = "^4.12.2"
typer = {extras = ["all"], version = "^0.24.1"}
pydantic = "^2.12.5"
pytest = "^9.0.2"
fastapi = "^0.135.1"
uvicorn = "^0.42.0"
jinja2 = "^3.1.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
# 1. Enable flake8-bugbear (`B`) rules, in addition to the defaults.
select = ["E4", "E7", "E9", "F", "B", "W", "C901"]
# 2. Avoid enforcing line-length violations (`E501`)
# ignore = ["E501"]
[tool.ruff]
line-length = 110
fix = true
unsafe-fixes = true
[tool.poetry.scripts]
montblanc = 'montblanc.main:app'