Initial upload: ErrorFix CLI with rule engine and pattern matching
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 03:56:19 +00:00
parent ed9041b89b
commit 497966a73a

25
setup.py Normal file
View File

@@ -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",
)