diff options
author | Peter Amstutz | 2020-04-29 14:55:51 -0400 |
---|---|---|
committer | Peter Amstutz | 2020-04-29 14:55:51 -0400 |
commit | 3475c3e30197a11ada10d1b0a4bafb026f2fb580 (patch) | |
tree | d408fe1ac73baf5f136b4ccabd8aac787e8c56bb | |
parent | fc86359aef7b26e3bd2ba0eedd291ccdde35e0b1 (diff) | |
download | bh20-seq-resource-3475c3e30197a11ada10d1b0a4bafb026f2fb580.tar.gz bh20-seq-resource-3475c3e30197a11ada10d1b0a4bafb026f2fb580.tar.lz bh20-seq-resource-3475c3e30197a11ada10d1b0a4bafb026f2fb580.zip |
Fix description content type for PyPi
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -35,6 +35,14 @@ Note that you will need to repeat the `. venv/bin/activate` step from this direc 3. **Install the tool.** Once in your virtualenv, install this project: +Install from PyPi: + +```sh +pip3 bh20-seq-uploader +``` + +Install from git: + ```sh pip3 install git+https://github.com/arvados/bh20-seq-resource.git@master ``` @@ -26,7 +26,7 @@ setup( version="1.0", description="Biohackathon sequence uploader", long_description=open(README).read(), - long_description_content_type="text/x-rst", + long_description_content_type="text/markdown", author="Peter Amstutz", author_email="peter.amstutz@curii.com", license="Apache 2.0", |