blob: f087e886244d5054a6296f006c786d0dba8c8b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
From 89c446ee739ee394afbd51447e5a35ecf4c876cd Mon Sep 17 00:00:00 2001
From: Xiretza <xiretza@xiretza.xyz>
Date: Sun, 27 Mar 2022 16:23:50 +0200
Subject: [PATCH] Fix README filename in setup.py
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index acef0b0..785a87c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
import setuptools
-with open("README.md", "r", encoding="utf-8") as fh:
+with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
--
2.35.1
|