Skip to content

Commit

Permalink
Merge pull request #23 from pbvarga1/update_v0.1.1
Browse files Browse the repository at this point in the history
Update v0.1.1
  • Loading branch information
percurnicus committed Jul 21, 2017
2 parents b691e10 + 4c69a1e commit 3a1c2d6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
.. :changelog:
History
-------
=======

0.1.1 ("2017-08-21")
--------------------

* Make compatible to be opened by other programs like pystamps

0.1.0 ("2017-08-20")
--------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PyQt4 as well (recommend PyQt5)::

Now you should be able to run the `pdsspect` program.

This works on Linux as well (Ubuntu 14.04). Instructions coming soon.
This works on Linux as well (Ubuntu 14.04).

Quick Tutorial
--------------
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
except ImportError:
from distutils.core import setup


readme = ''
with open('README.rst') as readme_file:
readme = readme_file.read()
for line in readme_file:
if 'Quick Tutorial' in line:
break
readme += line

with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
Expand All @@ -20,7 +23,7 @@

setup(
name='pdsspect',
version='0.1.0',
version='0.1.1',
description="PDS Image Viewer for Multispectral Analysis",
long_description=readme + '\n\n' + history,
author="PlanetaryPy Developers",
Expand Down

0 comments on commit 3a1c2d6

Please sign in to comment.