Set min python version to 3.6
This is already the case since f-strings are used.
This commit is contained in:
parent
05c900c297
commit
48a9b2d3dd
1 changed files with 1 additions and 5 deletions
6
setup.py
6
setup.py
|
@ -30,13 +30,9 @@ setup(
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.4',
|
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
|
||||||
'Programming Language :: Python :: 3.7',
|
|
||||||
],
|
],
|
||||||
packages=['toot', 'toot.tui'],
|
packages=['toot', 'toot.tui'],
|
||||||
python_requires=">=3.4",
|
python_requires=">=3.6",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"requests>=2.13,<3.0",
|
"requests>=2.13,<3.0",
|
||||||
"beautifulsoup4>=4.5.0,<5.0",
|
"beautifulsoup4>=4.5.0,<5.0",
|
||||||
|
|
Loading…
Reference in a new issue