diff --git a/crawlgur.py b/crawlgur.py index a74aa1c..cf333b2 100644 --- a/crawlgur.py +++ b/crawlgur.py @@ -22,8 +22,12 @@ from imgur.downloader import Downloader -__version__ = 'v0.2' -__status__ = 'Development' +__author__ = 'petarGitNik' +__copyright__ = 'Copyright (c) 2017 petarGitNik petargitnik@gmail.com' +__license__ = 'MIT' +__version__ = 'v0.2.0' +__email__ = 'petargitnik@gmail.com' +__status__ = 'Production' def parse_arguments(): diff --git a/imgur/downloader.py b/imgur/downloader.py index 0d058c5..e2126a3 100644 --- a/imgur/downloader.py +++ b/imgur/downloader.py @@ -25,8 +25,12 @@ from time import sleep -__version__ = 'v0.2' -__status__ = 'Development' +__author__ = 'petarGitNik' +__copyright__ = 'Copyright (c) 2017 petarGitNik petargitnik@gmail.com' +__license__ = 'MIT' +__version__ = 'v0.2.0' +__email__ = 'petargitnik@gmail.com' +__status__ = 'Production' class DownloaderException(Exception): diff --git a/imgur/imgur.py b/imgur/imgur.py index 69d2d09..2731e8c 100644 --- a/imgur/imgur.py +++ b/imgur/imgur.py @@ -46,8 +46,12 @@ from urllib.error import URLError -__version__ = 'v0.2' -__status__ = 'Development' +__author__ = 'petarGitNik' +__copyright__ = 'Copyright (c) 2017 petarGitNik petargitnik@gmail.com' +__license__ = 'MIT' +__version__ = 'v0.2.0' +__email__ = 'petargitnik@gmail.com' +__status__ = 'Production' class ImgurException(Exception): diff --git a/tests/test_imgur.py b/tests/test_imgur.py index 79b8555..a48895e 100644 --- a/tests/test_imgur.py +++ b/tests/test_imgur.py @@ -7,6 +7,14 @@ from imgur.imgur import ImgurException +__author__ = 'petarGitNik' +__copyright__ = 'Copyright (c) 2017 petarGitNik petargitnik@gmail.com' +__license__ = 'MIT' +__version__ = 'v0.2.0' +__email__ = 'petargitnik@gmail.com' +__status__ = 'Production' + + @pytest.fixture def single_image_i(): return Imgur('http://i.imgur.com/jedEzFL.jpg')