26 lines
641 B
Python
26 lines
641 B
Python
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,
|
|
)
|