Skip to content

Commit

Permalink
be consistent with names
Browse files Browse the repository at this point in the history
oopsies
  • Loading branch information
ShineyDev committed Dec 10, 2020
1 parent a3af6a8 commit 89ed10a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 89ed10a

Please sign in to comment.