Skip to content

Commit ecb9b48

Browse files
committed
fixed readme coding, added project info
1 parent cdc2073 commit ecb9b48

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Richka - Python Async Download Engine
22

3+
![Project Version](https://img.shields.io/pypi/v/richka) ![Python Version](https://img.shields.io/pypi/pyversions/richka)
4+
35
#### Richka (From Ukrainian: Рiчка) means river, stands for the download speed of Richka Engine
46

57
## Usage

richka/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "richka"
22
__description__ = "Python Async Download Engine."
33
__url__ = "https://github.com/ghinknet/richka"
4-
__version__ = '0.0.1'
4+
__version__ = '0.0.2'
55
__author__ = "Ian Xia"
66
__author_email__ = "xia@ghink.net"
77
__license__ = "MIT"

richka/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import logging
44

5-
__VERSION = ("Alpha", 0, 0, 1)
5+
__VERSION = ("Alpha", 0, 0, 2)
66
USER_AGENT = f"Richka{__VERSION[0]}/{__VERSION[1]}.{__VERSION[2]}.{__VERSION[3]}"
77
HEADERS = {"user-agent": USER_AGENT}
88
COROUTINE_LIMIT = 10

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
with open(os.path.join(here, "richka", "__version__.py"), "r") as f:
99
exec(f.read(), about)
1010

11-
with open("README.md", "r") as f:
11+
with open("README.md", "r", encoding="utf-8") as f:
1212
readme = f.read()
1313

1414
if sys.argv[-1] == "publish":

0 commit comments

Comments
 (0)