From 29e58f1397322b08e416c87d2aae3940b6fea3e0 Mon Sep 17 00:00:00 2001 From: Francis Engelmann Date: Sun, 29 Dec 2019 22:36:14 +0100 Subject: [PATCH] Fix setup version. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d651e1e..4a234cd 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() -version = '0.1.4' +version = '0.1.5' setup(name='pyviz3d', version=version, @@ -19,5 +19,8 @@ author_email='francis.engelmann@gmail.com', license='MIT', packages=['pyviz3d'], - install_requires=['numpy', 'vtk'], + install_requires=[ + 'numpy', + 'vtk', + ], zip_safe=False)