Skip to content

Commit

Permalink
pushing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Arsalan Arref committed Dec 2, 2024
1 parent f3682a4 commit bf79796
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
"""
setup.py fo dev-cli
This script is used to package and distribute the azzy-cli project.
This script is used to package and distribute the zap-cli project.
It includes details like the package name, version, dependencies,
and entry points, making it easy to install and use as a command-line tool.
Key features of this setup.py file:
- Defines the package name and version.
- Lists required dependencies (like the Click library).
- Specifies the command-line entry point, allowing the 'azzy-cli' command to be used in the terminal.
- Specifies the command-line entry point, allowing the 'zap-cli' command to be used in the terminal.
- Enables installation in development mode (editable mode) with `pip install -e .`.
Running `python setup.py install` or `pip install -e .` allows users to install
the azzy-cli package and make the azzy-cli command available globally.
the zap-cli package and make the zap-cli command available globally.
This file should be included in version control (e.g., Git) since it is essential for
package installation and distribution, but the generated `*.egg-info/` directories
should be excluded from version control.
"""

setup(
name='azzy-cli',
name='zap-cli',
version='0.1',
packages=find_packages(),
include_package_data=True,
Expand All @@ -31,7 +31,7 @@
],
entry_points={
'console_scripts': [
'azzy-cli=azzy_cli:cli',
'zap-cli=zap_cli:cli',
],
},
classifiers=[
Expand Down

0 comments on commit bf79796

Please sign in to comment.