Skip to content

Commit

Permalink
- Fixed bug with PyPI readme
Browse files Browse the repository at this point in the history
  • Loading branch information
evtyz committed Jul 13, 2020
1 parent 6b624ad commit 4b45f1f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 126 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@ with assistance from PyCharm.

View on `PyPI.`_

.. image:: ./images/starrynightgif.gif
.. image:: https://raw.githubusercontent.com/richmondvan/Shapevolve/master/images/starrynightgif.gif

Sample Results:
---------------

The Starry Night:

.. image:: ./images/starrynight.png_result.png
.. image:: https://raw.githubusercontent.com/richmondvan/Shapevolve/master/images/starrynight.png_result.png

Mona Lisa:

.. image:: ./images/monalisa.jpg_result.png
.. image:: https://raw.githubusercontent.com/richmondvan/Shapevolve/master/images/monalisa.jpg_result.png

Girl with a Pearl Earring:

.. image:: ./images/pearlearring.jpg_result.png
.. image:: https://raw.githubusercontent.com/richmondvan/Shapevolve/master/images/pearlearring.jpg_result.png

The Great Wave off Kanagawa:

.. image:: ./images/greatwave.jpg_result.png
.. image:: https://raw.githubusercontent.com/richmondvan/Shapevolve/master/images/greatwave.jpg_result.png

How to install and use:
-----------------------
Expand Down
118 changes: 0 additions & 118 deletions README_without_images.rst

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README_without_images.rst
description-file = README.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import path


with open(path.join(path.abspath(path.dirname(__file__)), 'README_without_images.rst'), encoding='utf-8') as f:
with open(path.join(path.abspath(path.dirname(__file__)), 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

with open('shapevolve/__init__.py') as f:
Expand Down
2 changes: 1 addition & 1 deletion shapevolve/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Shapevolve: A genetic algorithm to recreate artworks using simple shapes, with Python 3."""

__version__ = "0.1.3"
__version__ = "0.1.4"

0 comments on commit 4b45f1f

Please sign in to comment.