-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 942 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
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "sqlalchemy_models"
version = "0.1.0"
description = ""
authors = ["Chris Lee <clee@codegen.com>"]
[tool.poetry.dependencies]
python = ">=3.10,<4"
sqlalchemy = "^2.0.36"
pydantic-settings = "^2.6.0"
alembic = "^1.13.3"
asyncpg = "^0.30.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ipdb = "^0.13.13"
mypy = "^1.13.0"
ruff = "^0.7.0"
pytest-cov = "^5.0.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-ra -q"
testpaths = [
"tests"
]
[tool.poetry.scripts]
test = 'pytest:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["B", "ASYNC", "I"]
[tool.mypy]
files = ["sqlalchemy_models/"]
exclude = ["^tests/"]
python_executable = ".venv/bin/python"
ignore_missing_imports = true
explicit_package_bases = true
namespace_packages = true
warn_unused_configs = true