From cc5ddb70a4b5fe28d28668112acef347cc8691c9 Mon Sep 17 00:00:00 2001 From: AndrewCopeland Date: Fri, 22 Mar 2024 23:16:53 -0400 Subject: [PATCH] define py_module --- setup.py | 3 ++- test.py | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f7d1207..fd577d0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,8 @@ setup( name='ipdetective', - version='1.0.1', + py_modules=['ipdetective'], + version='1.0.2', description='A Python client for IPDetective API', long_description=long_description, author='IPDetective', diff --git a/test.py b/test.py index 92a6e6d..bbdb392 100644 --- a/test.py +++ b/test.py @@ -1,6 +1,5 @@ import os from ipdetective import IPDetective - def main(): api_key = os.getenv('IPDETECTIVE_API_KEY') ip_client = IPDetective(api_key)