This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.6 KB
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
60
61
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src", "."]
include = ["backend", "miner", "validator", "core", "evaluator"]
[tool.setuptools.package-data]
"kinitro.evaluator.rpc" = ["*.capnp"]
"evaluator.providers.swarm.assets" = ["*.png"]
[project]
name = "kinitro"
dynamic = ["version"]
description = "Storb RL Subnet - Shared Core Package"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"alembic>=1.10.0",
"asyncpg>=0.30.0",
"boto3>=1.40.25",
"click>=8.2.1",
"colorama>=0.4.6",
"dynaconf>=3.2.11",
"fastapi>=0.104.0",
"fiber @ git+https://github.com/threetau/fiber.git@11c542fbfe3e77f91cd898cf3004eb0dadf85de0#egg=fiber[chain]",
"greenlet>=3.2.4",
"gym-pybullet-drones @ git+https://github.com/threetau/gym-pybullet-drones.git@kinitro",
"gymnasium==1.2.0",
"huggingface-hub>=0.34.4",
"httpx>=0.27.0",
"kubernetes>=33.1.0",
"metaworld==3.0.0",
"mujoco>=3.2.0",
"msgpack>=1.0.0",
"numpy>=1.24.0",
"pgqueuer>=0.24.2",
"psycopg2>=2.9.10",
"pybullet>=3.2.5",
"pycapnp>=2.0.0",
"pydantic>=2.0.0",
"pytest>=8.4.1",
"ray>=2.48.0",
"rich>=13.0.0",
"snowflake-id==1.0.2",
"sqlalchemy>=2.0.43",
"sqlmodel>=0.0.22",
"testing-postgresql>=1.3.0",
"torch>=2.8.0",
"typer>=0.9.0",
"uvicorn>=0.24.0",
"websockets>=12.0",
]
[tool.setuptools.dynamic]
version = { attr = "core.__version__" }
[dependency-groups]
dev = ["debugpy>=1.8.9", "py-spy>=0.4.0", "pytest>=8.3.4", "ruff>=0.8.2"]