Skip to content

Commit 295d698

Browse files
author
Holger Fleischmann
committed
fixed readme encoding problem in pip package
1 parent f8bacc0 commit 295d698

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import setuptools
2+
import codecs
23

3-
with open("README.md", "r") as file:
4+
with codecs.open("README.md", "r", encoding='utf8') as file:
45
long_description = file.read()
56

67
setuptools.setup(
78
name="tsic",
8-
version="1.2.0",
9+
version="2.0.0",
910
author="Grillbaer",
1011
author_email="holgflei+tsic@gmail.com",
1112
description="Receive temperature readings from TSic 206/306/506/716 sensor chips on Raspberry Pi",

0 commit comments

Comments
 (0)