From 497966a73a0261791fad1785e61819781e032bc1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 03:56:19 +0000 Subject: [PATCH] Initial upload: ErrorFix CLI with rule engine and pattern matching --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0379d82 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + +setup( + name="errorfix-cli", + version="0.1.0", + packages=find_packages(), + install_requires=[ + "click>=8.0", + "pyyaml>=6.0", + "regex>=2023.0", + ], + extras_require={ + "dev": [ + "pytest>=7.0.0", + "pytest-cov>=4.0.0", + ], + }, + entry_points={ + "console_scripts": [ + "errorfix=errorfix.cli:main", + ], + "errorfix.plugins": [], + }, + python_requires=">=3.8", +)