From cf8c30b1bf3e467cebe606a965ad4ec7c4765aa7 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Thu, 30 Aug 2018 14:18:58 +0200 Subject: [PATCH] Fix package name --- gnosis/safe/tests/test_safe_service.py | 2 +- manage.py | 2 +- setup.py | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gnosis/safe/tests/test_safe_service.py b/gnosis/safe/tests/test_safe_service.py index b0160bcb3..225c94581 100644 --- a/gnosis/safe/tests/test_safe_service.py +++ b/gnosis/safe/tests/test_safe_service.py @@ -16,7 +16,7 @@ GAS_PRICE = settings.SAFE_GAS_PRICE -class TestHelpers(TestCase, TestCaseWithSafeContractMixin): +class TestSafeService(TestCase, TestCaseWithSafeContractMixin): @classmethod def setUpTestData(cls): cls.prepare_safe_tests() diff --git a/manage.py b/manage.py index 8e12763d5..c5c4b6f2d 100644 --- a/manage.py +++ b/manage.py @@ -24,6 +24,6 @@ # This allows easy placement of apps within the interior # gnosisdb directory. current_path = os.path.dirname(os.path.abspath(__file__)) - sys.path.append(os.path.join(current_path, 'django_eth_events')) + sys.path.append(os.path.join(current_path, 'gnosis')) execute_from_command_line(sys.argv) diff --git a/setup.py b/setup.py index 9a3d6cdd9..a7d0b8c20 100644 --- a/setup.py +++ b/setup.py @@ -16,15 +16,15 @@ ] setup( - name='django-eth', - version='0.2.3', + name='gnosis-py', + version='0.1.0', packages=find_packages(), install_requires=requirements, include_package_data=True, license='MIT License', - description='Ethereum utilities for Django and Django Rest projects', + description='Gnosis libraries for Python Projects', long_description=README, - url='https://github.com/gnosis/django-eth', + url='https://github.com/gnosis/gnosis-py', author='Uxío', author_email='uxio@gnosis.pm', keywords=['ethereum', 'django', 'rest', 'gnosis'],