Skip to content

Commit

Permalink
fixed readme coding, added project info
Browse files Browse the repository at this point in the history
  • Loading branch information
bigsk05 committed Oct 14, 2024
1 parent cdc2073 commit ecb9b48
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion richka/__version__.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion richka/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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":
Expand Down

0 comments on commit ecb9b48

Please sign in to comment.