Skip to content

Commit

Permalink
Merge pull request #3 from math280h/correct-setup-py
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
math280h authored Dec 15, 2021
2 parents cad9ddd + 4444e97 commit 0d6cb0e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="redactdump",

Expand All @@ -17,7 +20,8 @@

description="redactdump",

long_description=open("README.md").read(),
long_description=long_description,
long_description_content_type="text/markdown",

install_requires=[
'rich==10.15.2',
Expand Down

0 comments on commit 0d6cb0e

Please sign in to comment.