adding work scripts

This commit is contained in:
2025-05-20 09:16:54 -04:00
parent 428084e4ee
commit 47b546aff8
263 changed files with 349524 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from setuptools import setup
setup(
name='SnakeEyes-CLI',
version='1.0',
packages=['cli', 'cli.commands'],
include_package_data=True,
install_requires=[
'click',
],
entry_points="""
[console_scripts]
snakeeyes=cli.cli:cli
""",
)