-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (45 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
58 lines (45 loc) · 1.02 KB
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
51
52
53
54
55
56
57
58
[tool.poetry]
name = "mongomv"
version = "0.2.0.post4"
description = "Fast framework for model versioning"
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
license = "MIT"
readme = "README.md"
packages = [{include = "mongomv"}]
[tool.poetry.dependencies]
python = "^3.10"
pymongo = "^4.6.3"
pydantic = "^2.6.4"
[tool.poetry.group.test.dependencies]
ruff = "^0.3.5"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.1.5"
[tool.pytest.ini_options]
addopts = "--ignore=pgdata -p no:warnings"
pythonpath = [
".", "mongomv",
]
asyncio_mode="auto"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
line-length = 120
indent-width = 4
[tool.ruff.lint]
ignore = [
"C901", "B006", "B904"
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"