-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 777 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 777 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
33
[project]
name = "syna"
version = "0.3.0"
description = "Syna is a lightweight machine learning framework inspired by DeZero."
readme = "README.md"
authors = [
{ name = "sql-hkr", email = "sql.hkr@gmail.com" }
]
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"gymnasium[classic-control]>=1.2.1",
"matplotlib>=3.10.6",
"numpy>=2.2.6",
]
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff>=0.13.0",
"shibuya>=2025.9.25",
"sphinx>=8.2.3",
"torch>=2.8.0",
"torchvision>=0.23.0",
]