From 1f703455e39df384e303bbb7d93bb53951e3c51c Mon Sep 17 00:00:00 2001 From: Gaetan Jonathan Date: Sat, 9 Mar 2024 11:28:55 +0300 Subject: [PATCH] [REL] bump to 1.2.2 clean code --- setup.cfg | 2 +- setup.py | 21 ++++++++++----------- websearch/__init__.py | 9 +++++---- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/setup.cfg b/setup.cfg index f489977..f067593 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = WebSearch -version = 1.2.1 +version = 1.2.2 author = iTeam-$ author_email = contact@iteam-s.xyz description = Python module allowing you to do various searches for links on the Web. diff --git a/setup.py b/setup.py index 4ee3e31..0b720fb 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,9 @@ long_description = fh.read() setuptools.setup( - name="websearch-python", # This is the name of the package - version="1.2.1", # The initial release version - author="iTeam-$", # Full name of the author + name="websearch-python", # This is the name of the package + version="1.2.2", # The initial release version + author="iTeam-$", # Full name of the author description="Module allowing you to do various searches for links on the Web", long_description=long_description, # Long description read from the readme long_description_content_type="text/markdown", @@ -15,12 +15,11 @@ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", - ], # Information to filter the project on PyPi website - python_requires='>=3.6', - py_modules=["websearch"], # Name of the python package - install_requires=[ - "BeautifulSoup4", "requests", "gevent", "flask"], # depandance - include_package_data=True, # Include all data file with the package - package_data={'': ['*.json']}, - scripts=['bin/websearch'] + ], # Information to filter the project on PyPi website + python_requires=">=3.6", + py_modules=["websearch"], # Name of the python package + install_requires=["BeautifulSoup4", "requests", "gevent", "flask"], # depandance + include_package_data=True, # Include all data file with the package + package_data={"": ["*.json"]}, + scripts=["bin/websearch"], ) diff --git a/websearch/__init__.py b/websearch/__init__.py index 2588891..96b102e 100644 --- a/websearch/__init__.py +++ b/websearch/__init__.py @@ -1,6 +1,7 @@ from . import __main__ from .script import WebSearch -__version__ = '1.2.1' -__author__ = 'iTeam-$' -__license__ = 'MIT' -__all__ = ['WebSearch', '__main__'] + +__version__ = "1.2.2" +__author__ = "iTeam-$" +__license__ = "MIT" +__all__ = ["WebSearch", "__main__"]