From 199d7161e3642875eac59e69d75dfe0d9090086e Mon Sep 17 00:00:00 2001 From: Alessandro Frigeri <alessandro.frigeri@inaf.it> Date: Thu, 6 Jun 2019 11:28:17 +0200 Subject: [PATCH] fixed path --- Makefile | 5 ++++- README.md | 2 +- setup.py | 12 ++++++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 69fe55e..ee3ef42 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 e278d5c..c0d0514 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ pymoondb: The python interface to the MoonDB geochemical and petrological lunar --- - + 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 3e6292c..97a1303 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=[ -- GitLab