update setup

This commit is contained in:
Laura Liberda 2020-12-03 07:46:57 +01:00
parent cdb591b080
commit a74cd5867a

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' URL = 'https://git.sakamoto.pl/laudom/librefi'
EMAIL = 'librefi@selfisekai.rocks' EMAIL = 'librefi@selfisekai.rocks'
AUTHOR = 'Lauren Liberda' AUTHOR = 'Lauren Liberda'
REQUIRES_PYTHON = '==2.7, >=3.8' REQUIRES_PYTHON = '~=2.7, >=3.5'
REQUIRED = [ REQUIRED = [
'requests', 'requests',
@ -86,7 +86,7 @@ setup(
url=URL, url=URL,
py_modules=['librefi'], py_modules=['librefi'],
entry_points={ entry_points={
'console_scripts': ['librefi=librefi:cli'], 'console_scripts': ['librefi=librefi:main'],
}, },
install_requires=REQUIRED, install_requires=REQUIRED,
extras_require=EXTRAS, extras_require=EXTRAS,
@ -100,9 +100,13 @@ setup(
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', '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.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: Jython',
], ],
# $ setup.py publish support. # $ setup.py publish support.
cmdclass={ cmdclass={