Skip to content
Snippets Groups Projects
Commit 199d7161 authored by Alessandro Frigeri's avatar Alessandro Frigeri
Browse files

fixed path

parent 03fa1c17
No related branches found
No related tags found
No related merge requests found
...@@ -17,3 +17,6 @@ help: ...@@ -17,3 +17,6 @@ help:
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile %: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
bdist:
python3 setup.py sdist bdist_wheel
...@@ -4,7 +4,7 @@ pymoondb: The python interface to the MoonDB geochemical and petrological lunar ...@@ -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. 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.
......
...@@ -4,13 +4,17 @@ def readme(): ...@@ -4,13 +4,17 @@ def readme():
with open('README.md') as f: with open('README.md') as f:
return f.read() return f.read()
# The text of the README file
README = (open("README.md")).read()
setup(name='moondb', setup(name='pymoondb',
version='0.1', version='0.1.rc1',
description='Accessing the MoonDB lunar sample database', description='A python module to access the MoonDB lunar sample database',
url='https://www.ict.inaf.it/gitlab/alessandro.frigeri/python-moondb', url='https://www.ict.inaf.it/gitlab/alessandro.frigeri/pymoondb',
author='Alessandro Frigeri', author='Alessandro Frigeri',
author_email='Alessandro.Frigeri@inaf.it', author_email='Alessandro.Frigeri@inaf.it',
long_description=README,
long_description_content_type="text/markdown",
license='MIT', license='MIT',
packages=['moondb'], packages=['moondb'],
install_requires=[ install_requires=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment