mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-22 03:43:18 +00:00
parent
154d035435
commit
ed8f7f4eba
3 changed files with 4 additions and 4 deletions
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Install Python 3.6 or higher:
|
Install Python 3.7 or higher:
|
||||||
- [For Mac](https://www.python.org/downloads/mac-osx/)
|
- [For Mac](https://www.python.org/downloads/mac-osx/)
|
||||||
- For Windows: [desktop](https://www.python.org/downloads/windows/) or [Microsoft Store](https://www.microsoft.com/p/python-38/9mssztt1n39l)
|
- For Windows: [desktop](https://www.python.org/downloads/windows/) or [Microsoft Store](https://www.microsoft.com/p/python-38/9mssztt1n39l)
|
||||||
- [For Ubuntu](https://askubuntu.com/a/865569)
|
- [For Ubuntu](https://askubuntu.com/a/865569)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python3.6
|
#!/usr/bin/env python3.7
|
||||||
"""The main module that brings everything together."""
|
"""The main module that brings everything together."""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -70,9 +70,9 @@ Supports iTerm2, Terminology, Tilix and ConEmu.""",
|
||||||
"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.6"
|
"Programming Language :: Python :: 3.7"
|
||||||
],
|
],
|
||||||
|
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.7",
|
||||||
install_requires=(["psutil"] if sys.platform != "win32" else None)
|
install_requires=(["psutil"] if sys.platform != "win32" else None)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue