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={