diff --git a/setup.py b/setup.py index 403e739..2b391b2 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ import setuptools -with open("README.rst", "r") as f: +with open("README.rst", "r") as stream: long_description = f.read() with open("requirements.txt") as stream: install_requires = stream.read().splitlines() -with open("discord/ext/ipc/__init__.py") as f: +with open("discord/ext/ipc/__init__.py") as stream: version = re.search(r"^__version__\s*=\s*[\'\"]([^\'\"]*)[\'\"]", f.read(), re.MULTILINE).group(1) classifiers = [