Skip to content

Commit

Permalink
+ added dependencies and raised version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Randrian authored and Randrian committed Jun 20, 2018
1 parent 9200318 commit 39015d0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
# built documents.
#
# The short X.Y version.
version = '1.4.0'
version = '0.7.2'
# The full version, including alpha/beta/rc tags.
release = '1.4.0'
release = '0.7.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 1 addition & 2 deletions pylustrator/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import matplotlib.pyplot as plt
from matplotlib.text import Text
import numpy as np
import imageio
import traceback

def fig_text(x, y, text, unit="cm", *args, **kwargs):
Expand Down Expand Up @@ -39,7 +38,7 @@ def add_axes(dim, unit="cm", *args, **kwargs):


def add_image(filename):
plt.imshow(imageio.imread(filename))
plt.imshow(plt.imread(filename))
plt.xticks([])
plt.yticks([])

Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from setuptools import setup

setup(name='pylustrator',
version="0.7",
version="0.7.2",
description='Adds interactivity to arrange panels in matplotlib',
author='Richard Gerum',
author_email='[email protected]',
license='MIT',
license='GPLv3',
packages=['pylustrator'],
install_requires=[
'numpy',
'matplotlib'
'matplotlib',
'pyqt5',
'qtpy',
'qtawesome',
'scikit-image'
],
)

0 comments on commit 39015d0

Please sign in to comment.