-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 949 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
[tool.poetry]
name = "tesp-api"
version = "0.0.1"
license = "MIT"
description = "An Open-source implementation of a task execution engine based on the TES standard distributing executions to services exposing Pulsar application."
authors = ["Norbert Dopjera <ndopjera@gmail.com>"]
maintainers = ["Norbert Dopjera <ndopjera@gmail.com>"]
readme = "README.md"
repository = "https://github.com/ndopj/tesp-api"
[tool.poetry.dependencies]
python = "^3.10.0"
aio_pika = "^9.5.7"
fastapi = "^0.75.1"
orjson = "^3.6.8"
gunicorn = "^20.1.0"
uvicorn = "^0.17.6"
pydantic = "^1.9.0"
dynaconf = "^3.1.8"
motor = "^2.5.1"
loguru = "^0.6.0"
aiohttp = "^3.13.3"
aioftp = "^0.21.0"
PyMonad = "^2.4.0"
aiobotocore = "^2.4.2"
requests = "^2.28.2"
pyjwt = { version = "^2.8.0", extras = ["crypto"] }
cryptography = "^41.0.5"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"