-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (43 loc) · 945 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
47
48
49
50
51
[project]
name = "plexio"
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["version"]
dependencies = [
"fastapi==0.104.1",
"pydantic-settings==2.0.1",
"yarl==1.9.4",
"uvicorn==0.24.0",
"aiohttp==3.9.1",
"redis==5.0.1",
"sentry-sdk[fastapi]==1.38.0"
]
[project.optional-dependencies]
dev = [
"ruff==0.8.0"
]
[tool.hatch.version]
path = "plexio/__init__.py"
[tool.setuptools]
packages = ["plexio"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
[tool.ruff.lint.isort]
split-on-trailing-comma = true
force-wrap-aliases = true
combine-as-imports = true
[tool.ruff.format]
quote-style="single"