diff --git a/README.md b/README.md index b3147d6..cca4cbe 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Richka - Python Async Download Engine +![Project Version](https://img.shields.io/pypi/v/richka) ![Python Version](https://img.shields.io/pypi/pyversions/richka) + #### Richka (From Ukrainian: Рiчка) means river, stands for the download speed of Richka Engine ## Usage diff --git a/richka/__version__.py b/richka/__version__.py index a68acbb..09aca0b 100644 --- a/richka/__version__.py +++ b/richka/__version__.py @@ -1,7 +1,7 @@ __title__ = "richka" __description__ = "Python Async Download Engine." __url__ = "https://github.com/ghinknet/richka" -__version__ = '0.0.1' +__version__ = '0.0.2' __author__ = "Ian Xia" __author_email__ = "xia@ghink.net" __license__ = "MIT" diff --git a/richka/config.py b/richka/config.py index 3ff4a18..3b8e275 100644 --- a/richka/config.py +++ b/richka/config.py @@ -2,7 +2,7 @@ import richka import logging -__VERSION = ("Alpha", 0, 0, 1) +__VERSION = ("Alpha", 0, 0, 2) USER_AGENT = f"Richka{__VERSION[0]}/{__VERSION[1]}.{__VERSION[2]}.{__VERSION[3]}" HEADERS = {"user-agent": USER_AGENT} COROUTINE_LIMIT = 10 diff --git a/setup.py b/setup.py index 8ef2aa1..0122261 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(here, "richka", "__version__.py"), "r") as f: exec(f.read(), about) -with open("README.md", "r") as f: +with open("README.md", "r", encoding="utf-8") as f: readme = f.read() if sys.argv[-1] == "publish":