-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (72 loc) · 1.45 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
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "autobidsportal"
version = "2.3.0"
description = ""
authors = ["Tristan Kuehn <[email protected]>"]
maintainers = ["Jason Kai <[email protected]>"]
readme = "README.md"
packages = [
{ include = "autobidsportal" },
{ include = "autobidsportal_migrations" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
backports-zoneinfo = { version = "^0.2.1", python = "<3.9" }
datalad = "^0.18.1"
Flask = "~2.2.2"
Flask-Excel = "^0.0.7"
Flask-Login = "^0.6.2"
Flask-Migrate = "^4.0.4"
Flask-SQLAlchemy = "^3.0.3"
SQLAlchemy = "<2.0"
Flask-WTF = "~1.0.1"
Flask-Mail = "^0.9.1"
rq = "^1.12.0"
defusedxml = "^0.7.1"
email-validator = "^1.3.1"
Werkzeug = "^2.2.2"
WTForms = "^2.3.3"
pyuwsgi = { version = "^2.0.21", optional = true }
psycopg2-binary = "^2.9.5"
pybids = "^0.16.3"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pyright = "^1.1"
djlint = "^1.19.13"
pytest = "^7.2.1"
ruff = "^0.0.265"
[tool.ruff]
select = ["ALL"]
ignore = [
"ANN",
"TCH",
"T20",
"S603",
"S607",
"B905",
"D203",
"D213",
"PGH003",
"PTH123",
"FBT001",
"FBT002",
"FBT003",
]
unfixable = ["F841"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 79
[tool.djlint]
indent = 2
profile = "jinja"
max_line_length = 79
ignore = "H021"
[tool.poetry.extras]
deploy = ["pyuwsgi"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"