-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 973 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
[tool.poetry]
name = "fractal-database-matrix"
version = "0.0.6"
description = ""
authors = ["Justin Russell <justin@fractalnetworks.co>"]
readme = "README.md"
include = ["synapse/**"]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.0.0"
matrix-nio = "^0.22.1"
fractal-matrix-client = ">=0.0.1"
taskiq-matrix = ">=0.0.1"
fractal-cli = ">=0.0.1"
pytest = { version = "^7.4.3", optional = true }
pytest-asyncio = { version = "^0.21.1", optional = true }
pytest-cov = { version = "^4.1.0", optional = true }
pytest-mock = { version = "^3.11.1", optional = true }
ipython = { version = "^8.17.2", optional = true }
pytest-django = { version = "^4.5.2", optional = true }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
dev = ["pytest-django", "pytest", "pytest-cov", "pytest-mock", "pytest-asyncio", "ipython"]
[tool.poetry.plugins."fractal.plugins"]
"matrix" = "fractal_database_matrix.controllers.matrix"