You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
py_modules=['cim4CLITool.main'], # Update this line to include the path to main.py
install_requires=[
'click',
# Add other dependencies here
],
entry_points='''
[console_scripts]
cim4=cim4CLITool.main:main
''',
)
# pip install -e .
# The -e option stands for "editable" mode, which means the script will be installed in a way that reflects changes made to the source files without needing to reinstall.