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', ]