forked from ndopj/tesp-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 928 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
32
33
34
35
[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 <[email protected]>"]
maintainers = ["Norbert Dopjera <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ndopj/tesp-api"
[tool.poetry.dependencies]
python = "^3.10.0"
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.8.1"
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"