update setup

master
Laura Liberda 2020-12-03 07:46:57 +01:00
parent cdb591b080
commit a74cd5867a
1 changed files with 6 additions and 2 deletions

View File

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