feat: implement blog project with CI pipeline
This commit is contained in:
@@ -6,6 +6,8 @@ readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"fastapi>=0.136.0",
|
||||
"pydantic>=2.13.2",
|
||||
"pydantic-settings>=2.14.0",
|
||||
"uvicorn>=0.44.0",
|
||||
]
|
||||
|
||||
@@ -18,6 +20,7 @@ dev = [
|
||||
]
|
||||
tests = [
|
||||
"httpx>=0.28.1",
|
||||
"mimesis>=19.1.0",
|
||||
"pytest>=9.0.3",
|
||||
"pytest-asyncio>=1.3.0",
|
||||
"pytest-cov>=7.1.0",
|
||||
@@ -28,6 +31,7 @@ lints = [
|
||||
"isort>=8.0.1",
|
||||
]
|
||||
types = [
|
||||
"mimesis>=19.1.0",
|
||||
"mypy>=1.20.1",
|
||||
]
|
||||
|
||||
@@ -39,3 +43,11 @@ pythonpath = "."
|
||||
testpaths = "tests"
|
||||
xfail_strict = true
|
||||
|
||||
[tool.mypy]
|
||||
strict = true
|
||||
plugins = ["pydantic.mypy"]
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
filter_files = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user