Skip to content

Commit

Permalink
Version 1.0.0-Stable
Browse files Browse the repository at this point in the history
- Avoid Error on Oldest Link
- Optimization & Structure on Code
- Add M. Words search
- Add M. Excel Search
- Add M. PowerPoints Search
  • Loading branch information
gaetan1903 committed Sep 3, 2021
1 parent 64e6a81 commit 7d05d8c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions __init__.py

This file was deleted.

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 = 0.1
version = 1.0.0
author = iTeam-$
author_email = contact@iteam-s.xyz
description = Python module allowing you to do various searches for links on the Web.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="websearch-python", # This is the name of the package
version="0.1", # The initial release version
version="1.0.0", # The initial release version
author="iTeam-$", # Full name of the author
description="Python module allowing you to do various searches for links on the Web.",
long_description=long_description, # Long description read from the the readme file
Expand Down
1 change: 1 addition & 0 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def test6_powerpoint(self):
for powerpoint in powerpoints:
self.assertTrue(powerpoint.startswith('http'))


if __name__ == '__main__':
runner = unittest.TestCase()
runner.run()
2 changes: 1 addition & 1 deletion websearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .script import WebSearch
__version__ = '0.1'
__version__ = '1.0.0'
__author__ = 'iTeam-$'
__license__ = 'MIT License iTeam-$ 2021'

0 comments on commit 7d05d8c

Please sign in to comment.