From 1b1d761e02fb1f4c8e6a4d2f7103d14681e47f77 Mon Sep 17 00:00:00 2001 From: Olli Paakkunainen Date: Sun, 27 Nov 2022 11:49:05 +0200 Subject: [PATCH] Add tox.ini to sdist Add tox.ini to sdist to make the downstream testing easier. Closes #136. --- CHANGELOG.md | 4 ++++ MANIFEST.in | 1 + pyproject.toml | 1 + 3 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff04a28..9bd5f6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ Types of changes: - Add Python 3.12 support. +### Changed + +- Add tox.ini to sdist to make the downstream testing easier. + ### Removed - Drop Python 3.6 support. diff --git a/MANIFEST.in b/MANIFEST.in index ba0fd4c..39c5b78 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,6 +2,7 @@ include *.py include CHANGELOG.md include LICENSE include README.md +include tox.ini recursive-include tests *py recursive-include docs *.md include docs/conf.py diff --git a/pyproject.toml b/pyproject.toml index 7534da9..1355192 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ include = [ { path = "docs/**/*.md", format = "sdist" }, { path = "LICENSE", format = "sdist" }, { path = "README.md", format = "sdist" }, + { path = "tox.ini", format = "sdist" }, { path = "tests/**/*.py", format = "sdist" }, { path = "docs/conf.py", format = "sdist" }, { path = "docs/toctree.rst", format = "sdist" },