Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.25 #3

Merged
merged 3 commits into from Aug 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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