-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
69 lines (59 loc) · 1.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
requires-python = ">=3.10"
[tool.poetry]
name = "django-socio-grpc"
version = "0.1.1"
description = "Fork of django-grpc-framework with more feature maintained by the socio team. Make GRPC with django easy."
authors = ["Adrien Montagu <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.scripts]
tests = "test_utils.load_tests:launch"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
django = ">=4.2"
djangorestframework = "*"
grpcio-tools = "^1.50.0"
lark = "^1.0.0"
grpcio-health-checking = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
django-filter = "^2.4.0"
psycopg2-binary = "^2.8.6"
pytest-django = "^4.2.0"
freezegun = "^1.1.0"
pre-commit = "^2.19.0"
ruff = "^0.3.4"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
auto-pytabs = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
sphinx-autodoc-typehints = "*"
sphinxcontrib-apidoc = "*"
sphinxcontrib-spelling = "*"
sphinx-autobuild = "*"
myst-parser = "^2.0.0"
sphinx-autodoc2 = "^0.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint.isort]
known-third-party = ["django"]
[tool.ruff]
exclude = [
"migrations",
"grpc",
"*_pb2.py",
]
line-length = 95
[tool.ruff.lint]
ignore = ["E501"]
select = [
"E",
"F",
"UP",
"B",
"SIM",
"I",
]