-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.04 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
[tool.poetry]
authors = ["Calvin Laurenson <[email protected]>"]
description = ""
name = "grosbeak"
version = "0"
[tool.poetry.dependencies]
fastapi = "~0.95"
loguru = "~0.6"
pydantic = "~1.10"
pymongo = { git = "https://github.com/mongodb/mongo-python-driver.git", tag = "4.2.0", extras = ["srv"] }
python = "^3.11"
python-multipart = "~0.0.5"
uvicorn = { version = "~0.17", extras = ["standard"] }
[tool.poetry.group.dev.dependencies]
black = "~22.3"
mypy = "~0.942"
pytest = "~7.1"
ruff = "^0.0.257"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
[tool.poetry-dynamic-versioning]
enable = true
pattern = "^(?P<base>\\d+(\\.\\d+)*)"
style = "semver"
vcs = "git"
[tool.black]
src = "grosbeak/"
include = '\.py$'
target-version = ["py310"]
line-length = 88
[tool.mypy]
files = "./grosbeak/**/*.py"
namespace_packages = true
explicit_package_bases = true
[tool.mypy-pymongo]
ignore_missing_imports = true
[tool.ruff]
src = ["grosbeak"]
ignore = ["E501"]