-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 831 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 = "tiny8"
version = "0.2.0"
description = "An educational 8-bit CPU simulator with interactive visualization and assembly programming tools"
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",
"windows-curses ; sys_platform == 'win32'",
]
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=6.0.0",
"ruff>=0.14.1",
"shibuya>=2025.10.20",
"sphinx>=8.2.3",
]
[project.scripts]
tiny8 = "tiny8.cli:main"