-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "chutes-api"
version = "0.0.1"
description = "chutes.ai API/validator"
authors = ["Jon Durbin <[email protected]>", "namoray <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "<3.13,>=3.9"
aiohttp = "^3.10.10"
backoff = "^2.2.1"
requests = "^2.32.3"
loguru = "^0.7.2"
fastapi = "^0.115.4"
uvicorn = "^0.32.0"
pybase64 = "^1.4.0"
orjson = "^3.10.10"
SQLAlchemy = "^2.0.36"
pydantic-settings = "^2.6.0"
asyncpg = "^0.30.0"
passlib = "^1.7.4"
python-multipart = "0.0.19"
taskiq-redis = "^1.0.2"
fickling = "^0.1.3"
setuptools = "^75.3.0"
py-bip39-bindings = "^0.1.11"
argon2-cffi = "^23.1.0"
python-slugify = {extras = ["unidecode"], version = "^8.0.4"}
async-lru = "^2.0.4"
# TODO: Pin the below version
# fiber = { git = "https://github.com/rayonlabs/fiber.git" }
aiodns = "^3.2.0"
chutes = "0.2.20"
graval = "^0.0.6"
fastapi-cache2 = {extras = ["memcache"], version = "^0.2.2"}
python-socketio = {extras = ["asyncio-client"], version = "^5.11.4"}
pillow = "^11.0.0"
aioboto3 = "^13.2.0"
#cryptography = "^44.0.0"
py-ed25519-zebra-bindings = "1.1.0"
jinja2 = "^3.1.4"
pyjwt = "^2.10.1"
aiocache = "^0.12.3"
ruff = "^0.9.2"
aiomcache = "^0.8.2"
async-substrate-interface = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
greenlet = "^3.1.1"
ipykernel = "^6.29.5"
typer = "^0.12.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"