Skip to content

Commit

Permalink
add long description (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
smnmtzgr authored Jan 11, 2023
1 parent 3af253b commit b688d30
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]

with open("README.md", "r") as fs:
long_description = fs.read()


__author__ = "Simon Metzger"
__author_email__ = "[email protected]"
Expand All @@ -22,6 +25,8 @@
install_requires=reqs,
packages=find_packages(exclude=("test*", )),
license=__license__,
long_description=long_description,
long_description_content_type="text/markdown",
test_suite="tests",
platforms="any",
classifiers=["Development Status :: 4 - Beta",
Expand Down

0 comments on commit b688d30

Please sign in to comment.