From 75d10896ae242e25d1a8ca34c52828d4c03cbf5b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:01:24 +0000 Subject: [PATCH] Add core files: README, LICENSE, requirements, setup, config --- 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..43c6722 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + +setup( + name="config_auditor", + version="1.0.0", + description="A CLI tool that scans project configuration files and detects issues", + author="Config Auditor Team", + packages=find_packages(), + python_requires=">=3.9", + install_requires=[ + "click>=8.0.0", + "PyYAML>=6.0", + "toml>=0.10.0", + "requests>=2.31.0", + "semver>=3.0.0", + "packaging>=23.0", + "ollama>=0.1.41", + ], + entry_points={ + "console_scripts": [ + "config-auditor=config_auditor.cli:main", + ], + }, + include_package_data=True, +)