From 0dc6b7c253219bd3ebec7faea3df8e4d05b1c009 Mon Sep 17 00:00:00 2001 From: x0r Date: Sun, 10 Nov 2024 00:27:22 +0100 Subject: [PATCH] update pyproject with uv --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 795ea00..95218f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,10 @@ description = "Masm2c is a 16-bit assembly to C++ translator" authors = [ {name = "xor2003", email = "xor2003@gmx.com"}, ] -dependencies = ["lark","jsonpickle"] +dependencies = [ + "jsonpickle>=3.4.2", + "lark>=1.2.2", +] requires-python = ">=3.9" readme = "README.md" license = {text = "GPL"} @@ -28,6 +31,13 @@ classifiers = [ "Operating System :: OS Independent" ] +[project.optional-dependencies] +dev = [ + "coverage>=7.6.4", + "mock>=5.1.0", + "pytest>=8.3.3", +] + [project.urls] Homepage = "https://github.com/xor2003/masm2c"