-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (30 loc) · 853 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 = "stackchan-simulator"
version = "0.1.0"
description = "Unofficial MuJoCo dynamics simulator for the Stack-chan desktop robot"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [{ name = "qua" }]
keywords = ["stack-chan", "mujoco", "robotics", "simulator", "pan-tilt"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
]
dependencies = [
"fastapi>=0.136.3",
"httpx>=0.28.1",
"matplotlib>=3.10.9",
"mujoco>=3.9.0",
"numpy>=2.4.6",
"uvicorn[standard]>=0.48.0",
]
[project.urls]
Repository = "https://github.com/qua121/stackchan-simulator"
Issues = "https://github.com/qua121/stackchan-simulator/issues"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]