Initial upload with CI/CD workflow
This commit is contained in:
26
setup.py
Normal file
26
setup.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="cli-diff-auditor",
|
||||
version="1.0.0",
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
install_requires=[
|
||||
"click>=8.0",
|
||||
"gitpython>=3.1",
|
||||
"pyyaml>=6.0",
|
||||
"rich>=13.0",
|
||||
],
|
||||
extras_require={
|
||||
"dev": [
|
||||
"pytest>=7.0",
|
||||
"pytest-cov>=4.0",
|
||||
],
|
||||
},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"diff-auditor=cli_diff_auditor.cli:main",
|
||||
],
|
||||
},
|
||||
python_requires=">=3.8",
|
||||
)
|
||||
Reference in New Issue
Block a user