forked from ynput/ayon-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.46 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
[tool.poetry]
name = "ayon-server"
version = "0.4.3"
description = ""
authors = ["Ynput <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
aiofiles = "^23.1.0"
aioshutil = "^1.3"
asyncpg = "^0.27.0"
codenamize = "^1.2.3"
email-validator = "^1.1.3"
fastapi = "^0.95"
geoip2 = "^4.6.0"
gunicorn = "^20.1.0"
httpx = "^0.23"
nxtools = "^1.6"
orjson = "^3.8.6"
psutil = "^5.9.4"
pyyaml = "^6.0.1"
redis = "^4.5.5"
rich = "^13.4.2"
shortuuid = "^1.0.11"
strawberry-graphql = {extras = ["fastapi"], version = "^0.177.1"}
toml = "^0.10.2"
types-toml = "^0.10.8"
user-agents = "^2.2.0"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
semver = "^3.0.1"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-order = "^1.0.1"
ruff = "^0.0.267"
black = {version = "^22.1.0", allow-prereleases = true}
mypy = "^1.3"
pre-commit = "^2.20.0"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
# "B", # flake8-bugbear
"ISC", # flake8-implicit-str-concat
"C4", # flake8-comprehensions
# "N", # pep8-naming
# "SIM", # flake8-simplify
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex. C'mon - this is a complex project
]
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"