diff --git a/pyproject.toml b/pyproject.toml index 4c73200b..a6657872 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sh" -version = "2.0.0" +version = "2.0.1" description = "Python subprocess replacement" authors = ["Andrew Moffat "] readme = "README.rst" @@ -27,6 +27,14 @@ classifiers = [ "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules", ] +include = [ + { path = "CHANGELOG.md", format = "sdist" }, + { path = "MIGRATION.md", format = "sdist" }, + { path = "images", format = "sdist" }, + { path = "Makefile", format = "sdist" }, + { path = "tests", format = "sdist" }, + { path = "tox.ini", format = "sdist" }, +] [tool.poetry.dependencies] python = ">=3.8.1,<4.0"