Stěhování národů
This commit is contained in:
51
beaky-backend/pyproject.toml
Normal file
51
beaky-backend/pyproject.toml
Normal file
@@ -0,0 +1,51 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "beaky"
|
||||
version = "0.1.0"
|
||||
description = "Scan tickets and decide"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"pillow==12.1.1",
|
||||
"pydantic==2.12.5",
|
||||
"pandas==3.0.1",
|
||||
"openpyxl>=3.1.0",
|
||||
"PyYaml==6.0.3",
|
||||
"playwright==1.58.0",
|
||||
"requests>=2.32.0",
|
||||
"diskcache>=5.6",
|
||||
"pytesseract==0.3.13",
|
||||
"fastapi>=0.115",
|
||||
"uvicorn[standard]>=0.34",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pytest>=9.0.2",
|
||||
"ruff==0.15.5",
|
||||
"pytz",
|
||||
"types-requests",
|
||||
"types-PyYAML",
|
||||
# "playwright==1.58.0" # only dev because it cant be installed in a pipeline, just locally
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
beaky = "beaky.cli:main"
|
||||
beaky-api = "beaky.api.main:main"
|
||||
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
lint.select = ["E", "F", "I"]
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.12"
|
||||
strict = true
|
||||
ignore_missing_imports = true
|
||||
plugins = ["pydantic.mypy"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["test"]
|
||||
|
||||
Reference in New Issue
Block a user