From 14e9cb6b5543ad6e0fa3b86bf6780e5fd026ef02 Mon Sep 17 00:00:00 2001 From: Luiz Irber Date: Sat, 13 Jul 2019 19:15:56 +0000 Subject: [PATCH] wip --- setup.cfg | 3 +++ setup.py | 2 -- tox.ini | 6 ++++-- 3 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000..2c18781810 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file = README.md +long-description-content-type = text/markdown diff --git a/setup.py b/setup.py index 290325174d..e6b61a6d95 100644 --- a/setup.py +++ b/setup.py @@ -51,8 +51,6 @@ def build_native(spec): SETUP_METADATA = { "name": "sourmash", "description": "tools for comparing DNA sequences with MinHash sketches", - "long_description": LONG_DESCRIPTION, - "long_description_content_type": "text/markdown", "url": "https://github.com/dib-lab/sourmash", "author": "C. Titus Brown", "author_email": "titus@idyll.org", diff --git a/tox.ini b/tox.ini index ccfd5d047c..1a82122761 100644 --- a/tox.ini +++ b/tox.ini @@ -24,11 +24,13 @@ extras = 10x storage changedir = tests +#changedir = {envtmpdir} commands = pytest \ - --cov "{envsitepackagesdir}/sourmash" \ + --cov sourmash \ --cov-config "{toxinidir}/tox.ini" \ --junitxml {toxworkdir}/junit.{envname}.xml \ - {posargs:.} + {posargs} {toxinidir} +# --cov "{envsitepackagesdir}/sourmash" \ [testenv:py38] extras =