-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 867 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
[project]
name = "eric-api"
version = "1.6.0.9"
description = "A Server sent events based messaging microservice implementation"
keywords = ["sse", "api", "rest", "server sent events", "microservice", "messaging"]
readme = "README.md"
authors = [
{name = "Luca Stretti",email = "laxertu@gmail.com"}
]
license = "MIT"
requires-python = ">=3.10,<3.12"
dependencies = [
"fastapi (>=0.115.12,<0.116.0)",
"sse-starlette (>=2.2.1,<3.0.0)",
"uvicorn (>=0.34.1,<0.35.0)",
"dotenv (>=0.9.9,<0.10.0)",
"eric-redis-queues == 2.0.0.10",
"requests (>=2.32.4,<3.0.0)",
"sseclient (>=0.0.27,<0.0.28)",
]
[project.urls]
Repository = "https://github.com/laxertu/eric-api"
Issues = "https://github.com/laxertu/eric-api/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]