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 e019801 commit e5cda76Copy full SHA for e5cda76
setup.py
@@ -2,13 +2,13 @@
2
3
VERSION = "0.0.1"
4
5
-with open("README.md", "r") as readme_file:
+with open("README.md") as readme_file:
6
readme = readme_file.read()
7
8
-with open("requirements.txt", "r") as requirements_file:
+with open("requirements.txt") as requirements_file:
9
install_requires = [line.strip() for line in requirements_file]
10
11
-with open("LICENSE", "r") as license_file:
+with open("LICENSE") as license_file:
12
license_txt = license_file.read()
13
14
setup_args = dict(
0 commit comments