diff --git a/__init__.py b/__init__.py deleted file mode 100644 index f356a85..0000000 --- a/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -from .script import WebSearch -__version__ = '0.1' -__author__ = 'iTeam-$' -__license__ = 'MIT License iTeam-$ 2021' diff --git a/setup.cfg b/setup.cfg index cb2cd4d..d046814 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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. diff --git a/setup.py b/setup.py index 394e033..dd7309d 100644 --- a/setup.py +++ b/setup.py @@ -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 diff --git a/tests/test.py b/tests/test.py index af7771a..0f635b4 100644 --- a/tests/test.py +++ b/tests/test.py @@ -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() diff --git a/websearch/__init__.py b/websearch/__init__.py index f356a85..01fdce2 100644 --- a/websearch/__init__.py +++ b/websearch/__init__.py @@ -1,4 +1,4 @@ from .script import WebSearch -__version__ = '0.1' +__version__ = '1.0.0' __author__ = 'iTeam-$' __license__ = 'MIT License iTeam-$ 2021'