We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 045c6b2 commit 65259c1Copy full SHA for 65259c1
setup.py
@@ -1,7 +1,15 @@
1
-from setuptools import setup, find_packages
+import os
2
+
3
+from setuptools import find_packages, setup
4
5
import versioneer
6
7
+rootpath = os.path.dirname(os.path.abspath(__file__))
8
9
10
+def read(*parts):
11
+ return open(os.path.join(rootpath, *parts), "r").read()
12
13
14
setup(
15
name="stdlib-list",
@@ -13,7 +21,7 @@
21
install_requires=["functools32;python_version<'3.2'"],
22
extras_require={"develop": ["sphinx"]},
23
description="A list of Python Standard Libraries (2.6-7, 3.2-8).",
16
- long_description=f'{read("README.md")}',
24
+ long_description="{}".format(read("README.md")),
17
25
long_description_content_type="text/markdown",
18
26
include_package_data=True,
19
27
packages=find_packages(),
0 commit comments