-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 916 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
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "how2meet"
version = "0.1.0"
description = "Frictionless event manager"
authors = ["Ben Memberg <[email protected]>", "Connor Rubin <[email protected]>", "Taea Vogel <[email protected]"]
[tool.poetry.dependencies]
python = "^3.10"
nicegui = "^1.2.24"
pywebview = "^4.2.2"
sqlalchemy = "^2.0.23"
httpx = "^0.26.0"
twilio = "^8.11.0"
psycopg2-binary = "^2.9.9"
alembic = "^1.13.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.1"
mypy = "^1.0.1"
pre-commit = "^3.5.0"
ruff = "^0.1.5"
netifaces = "^0.11.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 145
[tool.ruff.lint]
ignore = ["F841", "E722"]
select = [
# isort
"I001"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 80
[tool.mypy]
ignore_missing_imports = true