Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Lu committed Jun 22, 2024
1 parent 825bbaf commit b1c0a51
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"streamlit>=1.28.0",
]

with open("README.md", "r", encoding="UTF-8") as f:
LONG_DESCRIPTION = f.read()

setuptools.setup(
name=NAME,
version=VERSION,
Expand All @@ -21,6 +24,6 @@
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["streamlit_notion"],
long_description=open("README.md", encoding="UTF-8").read(),
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
)

0 comments on commit b1c0a51

Please sign in to comment.