-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
49 lines (42 loc) · 1.09 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
[tool.poetry]
name = "tsdfileapi"
version = "0.0.0"
description = "A REST API for upload and download of files and JSON data."
authors = [
"Leon du Toit <l.c.d.toit@usit.uio.no>",
"Eirik Haatveit <haatveit@uio.no>",
"Milen Kouylekov <milen.kouylekov@usit.uio.no>",
"Armen Michaeli <armen.michaeli@usit.uio.no>",
]
[tool.poetry.scripts]
tsd-file-api = "tsdfileapi.api:main"
[tool.poetry.dependencies]
python = "^3.9"
jwcrypto = ">=1.4.2"
tornado = ">=6.3.2"
psycopg2 = ">=2.9.3"
libnacl = ">=1.7.1"
pysquril = ">=1.0.4"
SQLAlchemy = ">=1.3.8,<2"
pretty-bad-protocol = ">=3.1.1"
click = ">=8.0"
termcolor = ">=1.1.0"
python-magic = ">=0.4.15"
pika = ">=1.1.0"
pyyaml = ">=5.4"
[tool.poetry.group.dev.dependencies]
backoff = ">=2.2.1"
requests = ">=2.27.1"
tsd-api-client = ">=3.6.3"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
bump = true
[tool.ruff.lint]
select = ["F", "I"]
[tool.ruff.lint.isort]
force-single-line = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=0.20.0"]
build-backend = "poetry_dynamic_versioning.backend"