Skip to content

Commit

Permalink
fixed long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
huard committed Nov 24, 2022
1 parent 568cd90 commit 9e53ab0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
else:
install_requires = ['xmltodict', 'xsdata']

if exists('README.rst'):
with open('README.rst') as f:
if exists('README.md'):
with open('README.md') as f:
long_description = f.read()
else:
long_description = ''


setup(
name='xncml',
description='Tools for manipulating NCML (NetCDF Markup) files with/for xarray',
description='Tools for manipulating and opening NCML (NetCDF Markup) files with/for xarray',
long_description=long_description,
maintainer='Anderson Banihirwe',
maintainer_email='[email protected]',
Expand Down

0 comments on commit 9e53ab0

Please sign in to comment.