diff --git a/Makefile b/Makefile
index 69fe55ecfa9aade66e1412aef0ee7d04a9bcde86..ee3ef428f76a22d4099d600a8e4892c903d8bf78 100644
--- a/Makefile
+++ b/Makefile
@@ -16,4 +16,7 @@ help:
 # Catch-all target: route all unknown targets to Sphinx using the new
 # "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
 %: Makefile
-	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
\ No newline at end of file
+	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+bdist:
+	python3 setup.py sdist bdist_wheel
diff --git a/README.md b/README.md
index e278d5ce434f2d7ab0fa1ae4521094a9d1d260bb..c0d0514179d5f759054b7488742714790a28d808 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ pymoondb: The python interface to the MoonDB geochemical and petrological lunar
 ---
 
 
-![Apollo 12 NASA image AS12-47-6932](docs/source/images/AS12-47-6932.jpg)
+![Apollo 12 NASA image AS12-47-6932](https://www.ict.inaf.it/gitlab/alessandro.frigeri/pymoondb/raw/master/docs/source/images/AS12-47-6932.jpg)
 
 MoonDB is a NASA-funded quality-controlled data system that will preserve, digitize and curate lunar geochemical and petrological data and their associated sample metadata and analytical metadata.
 
diff --git a/setup.py b/setup.py
index 3e6292c2a94e1e3ff9bf3d5842b87a0a70fd7fa9..97a13032c9d98429cd888a1e2cea30d3a688b063 100644
--- a/setup.py
+++ b/setup.py
@@ -4,13 +4,17 @@ def readme():
     with open('README.md') as f:
         return f.read()
 
+# The text of the README file
+README = (open("README.md")).read()
 
-setup(name='moondb',
-      version='0.1',
-      description='Accessing the MoonDB lunar sample database',
-      url='https://www.ict.inaf.it/gitlab/alessandro.frigeri/python-moondb',
+setup(name='pymoondb',
+      version='0.1.rc1',
+      description='A python module to access the MoonDB lunar sample database',
+      url='https://www.ict.inaf.it/gitlab/alessandro.frigeri/pymoondb',
       author='Alessandro Frigeri',
       author_email='Alessandro.Frigeri@inaf.it',
+      long_description=README,
+      long_description_content_type="text/markdown",
       license='MIT',
       packages=['moondb'],
       install_requires=[