[-] Drop 3.7-3.9 support, remove entrypoint

This commit is contained in:
2024-12-10 06:39:08 -05:00
parent 8caebbb36d
commit 304f499fbf
2 changed files with 4 additions and 14 deletions
+1 -5
View File
@@ -1,9 +1,5 @@
from __future__ import annotations
def main():
print('🐱')
if __name__ == '__main__':
main()
print('🐱')
+3 -9
View File
@@ -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=[]
)