Skip to content

Commit

Permalink
make readme a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Mar 24, 2022
1 parent 09ae493 commit 2d77502
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as readme_file:
README_PATH = "README.md"

with open(README_PATH, "r", encoding="utf-8") as readme_file:
readme = readme_file.read()

setup(
Expand Down

0 comments on commit 2d77502

Please sign in to comment.