We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a452a2d commit 54da9acCopy full SHA for 54da9ac
1 file changed
setup.py
@@ -1,10 +1,13 @@
1
+import pathlib
2
from distutils.core import setup
3
from setuptools import find_packages
4
5
-def readme():
6
- with open("README.md") as f:
7
- return f.read()
+# The directory containing this file
+HERE = pathlib.Path(__file__).parent
8
+
9
+# The text of the README file
10
+README = (HERE / "README.md").read_text()
11
12
13
setup(
@@ -34,7 +37,7 @@ def readme():
34
37
"Programming Language :: Python :: 3.10",
35
38
"Topic :: Software Development :: Libraries",
36
39
],
- long_description=readme(),
40
+ long_description=README,
41
keywords=["python", "fintech", "peer-to-peer"],
42
zip_safe=False,
43
)
0 commit comments