forked from openrelik/openrelik-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 956 Bytes
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
[tool.poetry]
name = "openrelik-server"
version = "2024.11.27"
description = "Experimental forensic workflow system"
authors = ["Johan Berggren <jberggren@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.110.0"
uvicorn = "^0.27.1"
Authlib = "^1.3.1"
itsdangerous = "^2.1.2"
SQLAlchemy = "^2.0.27"
requests = "^2.31.0"
httpx = "^0.27.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.9"
aiofiles = "^23.2.1"
celery = {extras = ["redis"], version = "^5.3.6"}
psycopg2-binary = "^2.9.9"
python-magic = "^0.4.27"
google-auth = "^2.29.0"
alembic = "^1.13.2"
argon2-cffi = "^23.1.0"
typer = "^0.12.5"
openrelik-ai-common = "^2024.10.18"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
pytest = "^8.0.2"
black = "^24.2.0"
ipython = "^8.22.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"