diff --git a/waybackpy/__init__.py b/waybackpy/__init__.py index c86b736..860a4a3 100644 --- a/waybackpy/__init__.py +++ b/waybackpy/__init__.py @@ -1,14 +1,15 @@ -from .wrapper import Url -from .cdx_api import WaybackMachineCDXServerAPI -from .save_api import WaybackMachineSaveAPI -from .availability_api import WaybackMachineAvailabilityAPI from .__version__ import ( - __title__, - __description__, - __url__, - __version__, __author__, __author_email__, - __license__, __copyright__, + __description__, + __license__, + __title__, + __url__, + __download_url__, + __version__, ) +from .availability_api import WaybackMachineAvailabilityAPI +from .cdx_api import WaybackMachineCDXServerAPI +from .save_api import WaybackMachineSaveAPI +from .wrapper import Url diff --git a/waybackpy/__version__.py b/waybackpy/__version__.py index e2c4906..a0e4d86 100644 --- a/waybackpy/__version__.py +++ b/waybackpy/__version__.py @@ -5,6 +5,11 @@ __description__ = ( ) __url__ = "https://akamhy.github.io/waybackpy/" __version__ = "3.0.2" +__download_url__ = ( + "https://github.com/akamhy/waybackpy/archive/{version}.tar.gz".format( + version=__version__ + ) +) __author__ = "Akash Mahanty" __author_email__ = "akamhy@yahoo.com" __license__ = "MIT"