From 2a7b271d4f54eaa1320e9a2296ffac3ae49b49d7 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Wed, 26 Mar 2025 16:17:22 -0400 Subject: [PATCH] fixed entry to library --- czds/__init__.py | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/czds/__init__.py b/czds/__init__.py index 1c67776..e40b948 100644 --- a/czds/__init__.py +++ b/czds/__init__.py @@ -2,7 +2,9 @@ # ICANN API for the Centralized Zones Data Service - developed by acidvegas (https://git.acid.vegas/czds) # czds/__init__.py -__version__ = '1.3.6' +from .client import CZDS + +__version__ = '1.3.7' __author__ = 'acidvegas' __email__ = 'acid.vegas@acid.vegas' __github__ = 'https://github.com/acidvegas/czds' \ No newline at end of file diff --git a/setup.py b/setup.py index 952f29e..18b00db 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('README.md', 'r', encoding='utf-8') as fh: setup( name='czds-api', - version='1.3.6', + version='1.3.7', author='acidvegas', author_email='acid.vegas@acid.vegas', description='ICANN API for the Centralized Zones Data Service',