Skip to content

Commit

Permalink
Version 1.5.2 - allow display README.md on PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanSiemen committed Jan 29, 2019
1 parent c6d55b7 commit 56555d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ecmwfapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@


###############################################################################
VERSION = '1.5.0'
VERSION = '1.5.2'

###############################################################################

Expand Down
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,23 @@
# does it submit to any jurisdiction.
#

import io
import os.path
from setuptools import setup, find_packages

import ecmwfapi


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return io.open(file_path, encoding='utf-8').read()

setup(
name="ecmwf-api-client",
version=ecmwfapi.__version__,
description=ecmwfapi.__doc__,
long_description=read('README.md'),
long_description_content_type='text/markdown',
author="ECMWF",
author_email="[email protected]",
url="https://github.com/ecmwf/ecmwf-api-client",
Expand Down

0 comments on commit 56555d1

Please sign in to comment.