Skip to content

Commit 7560b47

Browse files
committed
Change README.md to README.rst
1 parent 177d1f0 commit 7560b47

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Things to include in the built package (besides the packages defined in setup.py)
2-
include README.md
2+
include README.rst
33
include LICENSE

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Homepage = "https://github.com/fquinto/pywibeee"
3535

3636
[tool.setuptools.dynamic]
3737
version = {attr = "pywibeee.__version__"}
38-
readme = {file = ["README.md"]}
38+
readme = {file = ["README.rst"]}
3939

4040
[project.scripts]
4141
pywibeee = "pywibeee.main:main"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
44
license_files = LICENSE
55
description = Command line interface (CLI) for WiBeee (old Mirubee) meter
6-
description_file = README.md
6+
description_file = README.rst
77
description-content-type = text/markdown
88
name = pywibeee
99
version = attr: pywibeee.__version__

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
EXCLUDE_FROM_PACKAGES = ["contrib", "docs", "tests*"]
1414
CURDIR = os.path.abspath(os.path.dirname(__file__))
1515

16-
with io.open(os.path.join(CURDIR, "README.md"), "r", encoding="utf-8") as f:
16+
with io.open(os.path.join(CURDIR, "README.rst"), "r", encoding="utf-8") as f:
1717
long_description = f.read()
1818
long_description += "\n\n"
1919

@@ -33,7 +33,7 @@ def get_long_description():
3333
Return the README and CHANGELOG.md.
3434
"""
3535
long_description = ""
36-
with open("README.md", encoding="utf8") as f:
36+
with open("README.rst", encoding="utf8") as f:
3737
long_description += f.read()
3838
# long_description += "\n\n"
3939
# with open(os.path.join(CURDIR, "CHANGELOG.md"), encoding="utf8") as f:

0 commit comments

Comments
 (0)