forked from OpenAgentsInc/queenbee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.05 KB
/
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
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "ai-spider"
version = "0.2.0"
description = "ai-worker coordination hub and inference endpoint provider"
authors = ["erik aronesty <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
fastapi = "^0.103.1"
websockets = "^11.0.3"
python-dotenv = "^1.0.0"
sse-starlette = "^1.6.5"
uvicorn = "^0.23.2"
itsdangerous = "^2.1.2"
httpx = "*"
python-multipart = "^0.0.6"
gunicorn = "^21.2.0"
notanorm = "^3.9.1"
pymysql = "^1.1.0"
aioboto3 = "^11.3.1"
asyncio-atexit = "^1.0.1"
uuid = "^1.30"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
ai-worker = {git = "https://github.com/ArcadeLabsInc/workerbee.git", rev="68718b2ddfb58f2996b75562ce2cdad0636dfa81"}
httpx-sse = "^0.3.1"
moto = {extras = ["server"], version = "^4.2.6"}
coverage = "^7.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
ignore = ['E701', 'E501']
[tool.ruff.per-file-ignores]
"__init__.py" = ['F401']
"tests/*" = ['E402', 'F811']