From d000ddc7d6bf814bf943d18ef1707255670ce326 Mon Sep 17 00:00:00 2001 From: sql-hkr Date: Mon, 15 Dec 2025 00:20:05 +0900 Subject: [PATCH] feat: add windows-curses (#18) --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6b02312..4018759 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,9 +3,7 @@ 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" } -] +authors = [{ name = "sql-hkr", email = "sql.hkr@gmail.com" }] requires-python = ">=3.11" classifiers = [ "License :: OSI Approved :: MIT License", @@ -15,6 +13,7 @@ classifiers = [ ] dependencies = [ "matplotlib>=3.10.7", + "windows-curses ; sys_platform == 'win32'", ] [build-system]