From 24fcc2ea83d511374dc87c68b8210cbbf3f53f2b Mon Sep 17 00:00:00 2001 From: Ronald Date: Fri, 27 Nov 2020 00:54:56 +0100 Subject: [PATCH] readme update impacted sdist --- MANIFEST | 2 +- MANIFEST.in | 2 +- setup.py | 2 +- tox.ini | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MANIFEST b/MANIFEST index 7dcc9c7..3137d35 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,6 +1,6 @@ # file GENERATED by distutils, do NOT edit CHANGES.txt -README.rst +README.md TODO setup.py docs/diff.rst diff --git a/MANIFEST.in b/MANIFEST.in index bb7a46c..9180c88 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include TODO -include *.rst *.txt +include *.rst *.txt README.md recursive-include docs *.rst diff --git a/setup.py b/setup.py index d86f6e4..b898211 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from distutils.core import setup -with open("README.rst") as rfile: +with open("README.md") as rfile: long_description = rfile.read() setup( diff --git a/tox.ini b/tox.ini index 7450d88..5e6d47a 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py27, py32, py38, flake8, pycodestyle, formatting, defusedxml, coveral [testenv] deps=pytest pytest-cov -commands=pytest --cov=libnmap/ --ignore=libnmap/test/test_backend_plugin_factory.py --ignore=libnmap/test/test_defusedxml.py +commands=pytest --cov=libnmap/ --cov-report xml --ignore=libnmap/test/test_backend_plugin_factory.py --ignore=libnmap/test/test_defusedxml.py [testenv:defusedxml] deps=pytest @@ -36,4 +36,4 @@ deps = isort==5.5.2 commands = black -l 79 --check . --exclude="tests/|venv|.tox" - isort . --check-only \ No newline at end of file + isort . --check-only