Skip to content

Commit

Permalink
fix: missing long description (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaumjd authored Aug 19, 2024
1 parent ee39cb6 commit 1afa515
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
@@ -1,6 +1,10 @@
#!/usr/bin/env python
from setuptools import setup, find_packages

try:
long_description = open("README.md").read()
except IOError:
long_description = ""

def find_version(*file_paths):
def read(*parts):
Expand All @@ -24,6 +28,7 @@ def read(*parts):
author='Ignacio Calderon',
description='OpenStep plist reader into python objects',
long_description=long_description,
long_description_content_type='text/markdown',
url="http://github.com/kronenthaler/openstep-parser",
version=find_version("openstep_parser", "__init__.py"),
license='BSD License',
Expand Down

0 comments on commit 1afa515

Please sign in to comment.