Skip to content

Commit

Permalink
Use README.md for package long description
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodsf committed Mar 5, 2021
1 parent b05724f commit 69e66fa
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 @@ -12,14 +12,17 @@
sys.path.insert(0, path)
from version import get_git_version

with open('README.md', 'rb') as f:
long_descr = f.read().decode('utf-8')

setup(
name='nllgrid',
packages=['nllgrid', ],
include_package_data=True,
version=get_git_version(),
description='Python class for reading and writing NonLinLoc grid files',
long_description='Python class for reading and writing NonLinLoc grid files',
long_description=long_descr,
long_description_content_type='text/markdown',
author='Claudio Satriano',
author_email='[email protected]',
url='http://www.ipgp.fr/~satriano',
Expand Down

0 comments on commit 69e66fa

Please sign in to comment.