diff --git a/app-openbis-command-line/src/python/obis/__init__.py b/app-openbis-command-line/src/python/obis/__init__.py
index d2d3d4c48db2c95490dfceca8ba5514bdf997649..339eab8a5612235f3a4ef9e914631e36c80fe167 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 8d61f0207fc107e409451e3554673511ba6032da..bbd286fdb573c6009bd55af924d333a8d03cb4c8 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,