Skip to content

Commit

Permalink
Merge pull request #536 from singnet/development
Browse files Browse the repository at this point in the history
Patch fix
  • Loading branch information
kiruxaspb authored Jan 28, 2025
2 parents ec72564 + 0f3cbbc commit b8f6d67
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: install snet-cli
run: |
# ./scripts/blockchain install
pip3 install -e . --break-system-packages
pip3 install . --break-system-packages
# - name: install platform-contracts
# run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: install snet-cli
run: |
# ./scripts/blockchain install
pip3 install -e . --break-system-packages
pip3 install . --break-system-packages
# - name: install platform-contracts
# run: |
Expand Down
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include snet/cli/resources/proto/*
include snet/cli/resources/package.json
include snet/cli/resources/*

recursive-exclude * .git
recursive-exclude * node_modules
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

The package is published in PyPI at the following link:

|Package |Description |
|----------------------------------------------|---------------------------------------------------------------------|
|[snet.cli](https://pypi.org/project/snet.cli/)|Command line interface to interact with the SingularityNET platform |
| Package |Description |
|------------------------------------------------|---------------------------------------------------------------------|
| [snet-cli](https://pypi.org/project/snet-cli/) |Command line interface to interact with the SingularityNET platform |

## License

Expand All @@ -16,7 +16,7 @@ This project is licensed under the MIT License - see the
## Getting Started

The instruction down below describes the installation of the SingularityNET CLI.
Please check our full [Documentation](http://snet-cli-docs.singularitynet.io/).
Please check our full [Documentation](https://dev.singularitynet.io/docs/products/DecentralizedAIPlatform/CLI/).

### Prerequisites

Expand All @@ -36,7 +36,7 @@ sudo apt-get install libudev-dev libusb-1.0-0-dev
### Install snet-cli using pip

```bash
$ pip3 install snet.cli
$ pip3 install snet-cli
```


Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jsonschema==4.0.0
eth-account==0.9.0
trezor==0.13.8
ledgerblue==0.1.48
snet.contracts==0.1.1
snet-contracts==0.2.1
lighthouseweb3==0.1.4
cryptography==43.0.3
cryptography==43.0.3
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from snet.cli.utils.utils import compile_proto
from version import __version__

PACKAGE_NAME = 'snet.cli'
PACKAGE_NAME = 'snet-cli'


this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -50,8 +50,7 @@ def run(self):
setup(
name=PACKAGE_NAME,
version=__version__,
packages=find_namespace_packages(include=['snet.*']),
namespace_packages=['snet'],
packages=find_namespace_packages(include=['snet*']),
url='https://github.com/singnet/snet-cli',
author="SingularityNET Foundation",
author_email="[email protected]",
Expand Down
5 changes: 0 additions & 5 deletions snet/cli/resources/package.json

This file was deleted.

2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.4.0"
__version__ = "2.4.1"

0 comments on commit b8f6d67

Please sign in to comment.