Skip to content

Commit

Permalink
[REL] bump to 1.2.2
Browse files Browse the repository at this point in the history
clean code
  • Loading branch information
gaetan1903 committed Mar 9, 2024
1 parent a8e0d46 commit 1f70345
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
21 changes: 10 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"],
)
9 changes: 5 additions & 4 deletions websearch/__init__.py
Original file line number Diff line number Diff line change
@@ -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__"]

0 comments on commit 1f70345

Please sign in to comment.