From 175dc13cecbdb94ad98c4a6a5b435b7434a37bfc Mon Sep 17 00:00:00 2001 From: Marten <58044494+McHaillet@users.noreply.github.com> Date: Mon, 11 Sep 2023 13:18:07 +0200 Subject: [PATCH] bump to 0.2 (#44) - changed to gplv2 label in setup.py corresponding with the actual license of the repo - removed development stage label (not really applicable here) --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index bc24bcbf..38def60c 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,11 @@ name='pytom-template-matching-gpu', packages=['pytom_tm', 'pytom_tm.angle_lists'], package_dir={'': 'src'}, - version='0.1', + version='0.2', description='GPU template matching from PyTOM as a lightweight pip package', long_description=long_description, long_description_content_type='text/markdown', - license='GPLv3', + license='GPLv2', author='McHaillet (Marten Chaillet)', url='https://github.com/McHaillet/pytom-template-matching-gpu', platforms=['any'], @@ -42,10 +42,9 @@ 'src/bin/pytom_merge_stars.py', ], classifiers=[ - 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', - 'License :: OSI Approved :: GPLv3 License', + 'License :: OSI Approved :: GPLv2 License', 'Programming Language :: Python :: 3 :: Only', ] )