Skip to content

Commit

Permalink
Merge pull request #3 from Javinator9889/adaptation
Browse files Browse the repository at this point in the history
v1.25
  • Loading branch information
Javinator9889 committed Aug 31, 2018
2 parents 1b17f41 + b5be05f commit 2bce572
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 65 deletions.
17 changes: 16 additions & 1 deletion README.md
@@ -1,7 +1,7 @@
# [pyGle](https://github.com/Javinator9889/pyGle)
A tool for searching the entire web with the Google technology

[![PyPi](https://img.shields.io/badge/v1.24%20-PyPi-green.svg)](https://pypi.org/project/g-pyGle/)
[![PyPi](https://img.shields.io/badge/v1.25%20-PyPi-green.svg)](https://pypi.org/project/g-pyGle/)
[![ZIP](https://img.shields.io/badge/Package%20-Zip-blue.svg)](https://github.com/Javinator9889/pyGle/archive/master.zip)
[![GIT](https://img.shields.io/badge/Package%20-Git-red.svg)](https://github.com/Javinator9889/pyGle.git)
[![Downloads](https://pepy.tech/badge/g-pygle)](https://pepy.tech/project/g-pygle)
Expand Down Expand Up @@ -178,6 +178,21 @@ As usual, you have the [pip](https://pypi.org/project/pip/) mode or the

*The commands for *Windows* are the same but without `sudo`*

### Dependencies
There are some modules you must install in order to make *pyGle* work as expected:
+ **Common dependencies**:
```bash
pip install ujson
pip install lxml
pip install beautifulsoup4
pip install typing
```

+ **Python 2 dependencies**:
```bash
pip install futures
```

### *Installing via PyPi (pip)*

+ In some Linux systems, *pip* is not directly available in command line, so we have two options:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -322,7 +322,7 @@ If you really appreciate my work, you can *contribute to this project* perfectly
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.`

.. |PyPi| image:: https://img.shields.io/badge/v1.24%20-PyPi-green.svg
.. |PyPi| image:: https://img.shields.io/badge/v1.25%20-PyPi-green.svg
:target: https://pypi.org/project/g-pyGle/
.. |ZIP| image:: https://img.shields.io/badge/Package%20-Zip-blue.svg
:target: https://github.com/Javinator9889/pyGle/archive/master.zip
Expand Down
139 changes: 79 additions & 60 deletions pyGle/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyGle/version.py
Expand Up @@ -6,8 +6,8 @@
# under certain conditions; type "-L" for details.
#

__version__ = "v1.24"
__version_code__ = 100
__version__ = "v1.25"
__version_code__ = 101


def print_ver_info():
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -16,6 +16,11 @@
long_description = ''


requirements = ['lxml', 'beautifulsoup4', 'ujson', 'typing']
if version < '3':
requirements.append('futures')


setup(
name='g-pyGle',
version=__version__,
Expand All @@ -28,7 +33,7 @@
long_description=long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
install_requires=['lxml', 'beautifulsoup4', 'ujson', 'futures; python_version <= "2.7"', 'typing'],
install_requires=requirements,
zip_safe=False,
download_url="https://github.com/Javinator9889/pyGle/archive/master.zip",
classifiers=[
Expand Down

0 comments on commit 2bce572

Please sign in to comment.