Skip to content

Commit

Permalink
README added to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Gomez-Dans committed Sep 20, 2018
1 parent b1e35be commit 0db674b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ The only requirements are (if memory serves) numpy and scipy.

At some point, pointers to a library of emulators of popular vegetation and atmospheric RT codes will be provided.

Citation
--------
### Citation


If you use this code, we would be grateful if you cited the following paper:

Expand Down
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
from distutils.core import setup
from distutils.core import setup, Extension


from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='gp_emulator',
version='1.6.1',
description='A Python GaussianProcess emulator software package',
Expand All @@ -18,6 +24,8 @@
'Intended Audience :: Developers',
'Environment :: Console'],
author='J Gomez-Dans',
long_description=long_description,
long_description_content_type='text/markdown',
author_email='[email protected]',
url='http://github.com/jgomezdans/gp_emulator',
packages=['gp_emulator'],
Expand Down

0 comments on commit 0db674b

Please sign in to comment.