From 7a4de99664d2cf04843535b3d4b13362a5f9f426 Mon Sep 17 00:00:00 2001 From: Jose Gomez-Dans Date: Thu, 20 Sep 2018 14:44:28 +0100 Subject: [PATCH] fixed setup to show readme on pypi --- setup.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 0a94dee..ba9d7f3 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,15 @@ #!/usr/bin/env python - -from distutils.core import setup -from distutils.core import setup, Extension +from os import path +from setuptools import setup -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', + version='1.6.3', + description='A Python Gaussian Process emulator software package', classifiers=[ 'Development Status :: 4 - Beta', 'Natural Language :: English',