From 14dddedf01a320657011642c3aa02752f39a8ede Mon Sep 17 00:00:00 2001 From: Tobias Liaudat Date: Mon, 19 Oct 2020 10:39:50 +0200 Subject: [PATCH] Solved setuptools bug and updated release info --- mccd/info.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mccd/info.py b/mccd/info.py index 5e89b62..aab6aa2 100644 --- a/mccd/info.py +++ b/mccd/info.py @@ -7,7 +7,7 @@ """ # Set the package release version -version_info = (0, 0, 2) +version_info = (0, 0, 3) __version__ = '.'.join(str(c) for c in version_info) # Set the package details @@ -15,11 +15,11 @@ __email__ = 'tobiasliaudat@gmail.com' __year__ = '2020' __url__ = 'https://github.com/CosmoStat/mccd' -__description__ = 'A non-parametric Multi-CCD Point Spread Function modelling' +__description__ = 'A non-parametric Multi-CCD Point Spread Function modelling.' # Default package properties __license__ = 'MIT' -__about__ = ('{} \n\n Author: {} \n Email: {} \n Year: {} \n {} \n\n' +__about__ = ('{}\nAuthor: {} \nEmail: {} \nYear: {} \nInfo: {}' ''.format(__name__, __author__, __email__, __year__, __description__)) __setup_requires__ = ['pytest-runner', ]