Skip to content

Commit

Permalink
switch to version 0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Sep 14, 2017
1 parent 72bf86b commit adbd5b6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion orangetool/orangetool_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
'''
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
psutil
requests

requests
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]',
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',
)

0 comments on commit adbd5b6

Please sign in to comment.