We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c079f commit bcacf4cCopy full SHA for bcacf4c
setup.py
@@ -22,19 +22,19 @@
22
from setuptools import setup, find_packages
23
24
# Load package.json contents
25
-with open("package.json") as data:
26
- package = json.load(data)
+with open("package.json") as f:
+ package = json.load(f)
27
28
# Load list of dependencies
29
-with open("requirements.txt") as data:
+with open("requirements.txt") as f:
30
install_requires = [
31
- line for line in data.read().split("\n")
+ line for line in f.read().split("\n")
32
if line and not line.startswith("#")
33
]
34
35
# Load README contents
36
-with open("README.md", encoding = "utf-8") as data:
37
- long_description = data.read()
+with open("README.md", encoding = "utf-8") as f:
+ long_description = f.read()
38
39
# Package description
40
setup(
0 commit comments