From 304f499fbfa4ab3a43baf1b65ba696664e437e45 Mon Sep 17 00:00:00 2001 From: Azalea Gui <22280294+hykilpikonna@users.noreply.github.com> Date: Tue, 10 Dec 2024 06:39:08 -0500 Subject: [PATCH] [-] Drop 3.7-3.9 support, remove entrypoint --- hypy_utils/__main__.py | 6 +----- setup.py | 12 +++--------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/hypy_utils/__main__.py b/hypy_utils/__main__.py index b6651b4..8becc0c 100644 --- a/hypy_utils/__main__.py +++ b/hypy_utils/__main__.py @@ -1,9 +1,5 @@ from __future__ import annotations -def main(): - print('🐱') - - if __name__ == '__main__': - main() + print('🐱') diff --git a/setup.py b/setup.py index 27dec13..4d29ca2 100644 --- a/setup.py +++ b/setup.py @@ -22,18 +22,12 @@ setup( classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], packages=find_packages(exclude=("tests",)), include_package_data=True, - install_requires=[], - entry_points={ - "console_scripts": [ - "hypy_utils=hypy_utils.__main__:main", - ] - }, + install_requires=[] )