Add core files: README, LICENSE, requirements, setup, config
This commit is contained in:
25
setup.py
Normal file
25
setup.py
Normal file
@@ -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,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user