-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.11 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "unifactory"
version = "0.1.0"
description = "Automatically choose the right polyfactory."
authors = ["Philipp Hack <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/phha/unifactory"
repository = "https://github.com/phha/unifactory"
packages = [{include = "unifactory"}]
keywords = ["polyfactory"]
[tool.poetry.dependencies]
python = "^3.10"
polyfactory = "^2.13.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
ruff = "^0.1.9"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
polyfactory = "^2.13.0"
beanie = "^1.24.0"
mongomock-motor = "^0.0.26"
odmantic = "^1.0.0"
msgspec = "^0.18.5"
sqlalchemy = "^2.0.24"
attrs = "^23.2.0"
anyio = "^4.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["ALL"]
ignore = ["D", "ANN101", "ANN401", "TRY003", "COM812", "ISC001"]
target-version = "py312"
fixable = ["ALL"]
[tool.ruff.per-file-ignores]
"tests/*" = ["S101"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*general_plain_validator_function.*",
"ignore:.*model_fields.*",
]