From a74cd5867ad9cb0edeff4f8f091382684abb6bf3 Mon Sep 17 00:00:00 2001 From: Laura Liberda Date: Thu, 3 Dec 2020 07:46:57 +0100 Subject: [PATCH] update setup --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 91e5851..9e15283 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ DESCRIPTION = 'LibreFi logs into public Wi-Fis without user interaction. Just ac URL = 'https://git.sakamoto.pl/laudom/librefi' EMAIL = 'librefi@selfisekai.rocks' AUTHOR = 'Lauren Liberda' -REQUIRES_PYTHON = '==2.7, >=3.8' +REQUIRES_PYTHON = '~=2.7, >=3.5' REQUIRED = [ 'requests', @@ -86,7 +86,7 @@ setup( url=URL, py_modules=['librefi'], entry_points={ - 'console_scripts': ['librefi=librefi:cli'], + 'console_scripts': ['librefi=librefi:main'], }, install_requires=REQUIRED, extras_require=EXTRAS, @@ -100,9 +100,13 @@ setup( 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: Jython', ], # $ setup.py publish support. cmdclass={