From 97697910bd6594fedbe9332ae8e06df67411b152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Moreira-Soares?= Date: Mon, 12 Dec 2022 22:35:48 +0100 Subject: [PATCH] update setup.py --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index f191d45..6e7fda1 100644 --- a/setup.py +++ b/setup.py @@ -5,15 +5,15 @@ setup( name='trajpy', - version='1.3.1', - url='https://github.com/phydev/trajpy.git', - author='Mauricio Moreira', - author_email='mms@uc.pt', + version='1.4.0', + url='https://github.com/ocbe-uio/trajpy.git', + author='Mauricio Moreira and Eduardo Mossmann', + author_email='trajpy@protonmail.com', description='Trajectory classifier for cells, nanoparticles & whatelse.', + keywords=['trajectory quantification', 'feature engineering', 'diffusion classification'], license='GNU GPLv3', platform='Python 3.7', packages=find_packages(), install_requires=['numpy >= 1.14.3', - 'scipy == 1.7.1', #1.5.4 - 'opencv-contrib-python == 4.5.5.62'], + 'scipy == 1.7.1'], )