Skip to content

Commit 8edd93f

Browse files
authored
Merge pull request #534 from singnet/implement-pep625
Fixed package name and reqs for implement pep 625
2 parents fcb19f8 + 8d6b5a1 commit 8edd93f

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jsonschema==4.0.0
1818
eth-account==0.9.0
1919
trezor==0.13.8
2020
ledgerblue==0.1.48
21-
snet.contracts==0.1.1
21+
snet-contracts==0.2.1
2222
lighthouseweb3==0.1.4
23-
cryptography==43.0.3
23+
cryptography==43.0.3

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from snet.cli.utils.utils import compile_proto
88
from version import __version__
99

10-
PACKAGE_NAME = 'snet.cli'
10+
PACKAGE_NAME = 'snet-cli'
1111

1212

1313
this_directory = os.path.abspath(os.path.dirname(__file__))
@@ -50,8 +50,7 @@ def run(self):
5050
setup(
5151
name=PACKAGE_NAME,
5252
version=__version__,
53-
packages=find_namespace_packages(include=['snet.*']),
54-
namespace_packages=['snet'],
53+
packages=find_namespace_packages(include=['snet*']),
5554
url='https://github.com/singnet/snet-cli',
5655
author="SingularityNET Foundation",
5756
author_email="info@singularitynet.io",

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.4.0"
1+
__version__ = "2.4.1"

0 commit comments

Comments
 (0)