-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 955 Bytes
/
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
[tool.poetry]
name = "database-setup-tools"
version = "1.3.1"
description = "Tools to easily setup databases opinionated towards FastAPI and SQLModel"
authors = ["Jonas Scholl <[email protected]>", "Yannic Schröer <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "database_setup_tools" }]
[tool.poetry.dependencies]
python = "^3.9"
sqlalchemy = "^1.4.41"
sqlalchemy-utils = ">=0.38.3,<0.42.0"
[tool.poetry.dev-dependencies]
black = "24.4.1"
sqlmodel = "^0.0.8"
psycopg2-binary = "^2.9.5"
pytest-cov = "^4.0.0"
pytest = "8.1.1"
httpx = "^0.27.0"
mockito = "^1.4.0"
pytest-mockito = "^0.0.4"
pre-commit = "^3.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-x -p no:warnings --cov-report=term --cov-report=term-missing --no-cov-on-fail --cov=database_setup_tools"
[tool.black]
line-length = 180
target-version = ['py311']