-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (44 loc) · 1.05 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
50
[tool.poetry]
name = "nido"
version = "0.0.1"
description = "Open source multifamily property management platform"
authors = ["John Arnold <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Private :: Do Not Upload"
]
packages = [
{ include = "nido_frontend" },
{ include = "nido_backend" },
]
include = [
{ path = "nido_frontend/resources/static/css/style.css", format = "wheel" },
]
[tool.poetry.dependencies]
python = "^3.10"
sqlalchemy = "^2.0.4"
strawberry-graphql = "0.177.1"
oso = "^0.27.0"
flask = "^2.0.0"
pyhanko = "0.20.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pytest = "^7.0.0"
mypy = "^1.0.0"
pre-commit = "^3.0.0"
isort = "^5.12.0"
libsass = "^0.22.0"
[tool.pytest.ini_options]
filterwarnings = [
# backend_tests/conftest.py transaction.rollback()
"ignore::sqlalchemy.exc.SAWarning::52",
]
[tool.mypy]
plugins = "strawberry.ext.mypy_plugin"
[tool.isort]
profile = "black"
skip_gitignore = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"