diff --git a/README.md b/README.md index 97478ca..f251a14 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ By [Moduland Co](http://www.moduland.ir) ## Installation ### Source Code -- Download [Version 0.23](https://github.com/moduland/Orangetool/archive/v0.23.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/master.zip) +- Download [Version 0.25](https://github.com/moduland/Orangetool/archive/v0.25.zip) or [Latest Source ](https://github.com/Moduland/Orangetool/archive/master.zip) - `pip3 install -r requirements.txt` or `pip install -r requirements.txt` (Need root access) - `python3 setup.py install` or `python setup.py install` ### PyPI diff --git a/orangetool/orangetool_system.py b/orangetool/orangetool_system.py index 75805d4..6389370 100644 --- a/orangetool/orangetool_system.py +++ b/orangetool/orangetool_system.py @@ -11,7 +11,7 @@ ''' ip_pattern=r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" api_1="http://ipinfo.io/ip" -VERSION="0.23" +VERSION="0.25" UPDATE_URL="http://www.orangetool.ir/version" def check_update(DEBUG=False): ''' diff --git a/requirements.txt b/requirements.txt index 3b27364..556c461 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ psutil -requests - +requests \ No newline at end of file diff --git a/setup.py b/setup.py index 5398966..b00b582 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,18 @@ setup( name = 'orangetool', packages = ['orangetool'], - version = '0.23', + version = '0.25', description = 'Some useful script for Orangepi/Raspberrypi boards', long_description="", author = 'Moduland Co', author_email = 'info@moduland.ir', url = 'https://github.com/Moduland/Orangetool', - download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.22', + download_url = 'https://github.com/Moduland/Orangetool/tarball/v0.24', keywords = ['orangepi', 'raspberrypi', 'embedded-systems','python'], classifiers = [], + install_requires=[ + 'psutil', + 'requests', + ], license='MIT', )