From 9ff30c4d715d4b96ba1476e1410aa3d08b012f60 Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Tue, 28 Feb 2023 15:55:20 +0100 Subject: [PATCH] SSDM-13300: oBIS 0.4.0-rc1 --- app-openbis-command-line/src/python/obis/__init__.py | 4 ++-- app-openbis-command-line/src/python/setup.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app-openbis-command-line/src/python/obis/__init__.py b/app-openbis-command-line/src/python/obis/__init__.py index d2d3d4c48db..339eab8a561 100644 --- a/app-openbis-command-line/src/python/obis/__init__.py +++ b/app-openbis-command-line/src/python/obis/__init__.py @@ -13,7 +13,7 @@ # limitations under the License. # __author__ = "ID SIS • ETH Zürich" -__email__ = "swen@ethz.ch" -__version__ = "0.3.2" +__email__ = "openbis-support@id.ethz.ch" +__version__ = "0.4.0rc1" from .dm import * diff --git a/app-openbis-command-line/src/python/setup.py b/app-openbis-command-line/src/python/setup.py index 8d61f0207fc..bbd286fdb57 100644 --- a/app-openbis-command-line/src/python/setup.py +++ b/app-openbis-command-line/src/python/setup.py @@ -18,7 +18,7 @@ import sys if sys.version_info < (3, 3): sys.exit("Sorry, Python < 3.3 is not supported") -from setuptools import setup, find_packages +from setuptools import setup with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() @@ -31,13 +31,13 @@ data_files = [ setup( name="obis", - version="0.3.2", + version="0.4.0rc1", description="Local data management with assistance from OpenBIS.", long_description=long_description, long_description_content_type="text/markdown", url="https://sissource.ethz.ch/sispub/openbis/tree/master/app-openbis-command-line", author="ID SIS • ETH Zürich", - author_email="swen@ethz.ch", + author_email="openbis-support@id.ethz.ch", license="Apache Software License Version 2.0", packages=["obis", "obis.dm", "obis.dm.commands", "obis.scripts"], data_files=data_files, -- GitLab