Skip to content

Commit

Permalink
Solved setuptools bug and updated release info
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-liaudat committed Oct 19, 2020
1 parent 0fffb0b commit 14ddded
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mccd/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
"""

# 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
__author__ = 'Tobias Liaudat'
__email__ = '[email protected]'
__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', ]
Expand Down

0 comments on commit 14ddded

Please sign in to comment.