forked from sql-hkr/tiny8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 710 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 710 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 = "tiny8"
version = "0.1.1"
description = "Simulator for an 8-bit CPU with registers, memory, and a stack."
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 = [
"matplotlib>=3.10.7",
]
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ruff>=0.14.1",
"shibuya>=2025.10.20",
"sphinx>=8.2.3",
]
[project.scripts]
tiny8 = "tiny8.cli:main"