From be3050fac50fc9c0107002b4e2e528718c6d0694 Mon Sep 17 00:00:00 2001 From: Iwan Aucamp Date: Thu, 16 Mar 2023 23:21:01 +0000 Subject: [PATCH] build: explicitly specify `packages` in `pyproject.toml` The default behaviour makes it more of a hassle to republish RDFLib to a seperate package, something which I plan to do for testing purposes and possibly other reasons. More changes may follow in a similar vein. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e687d17c6..ce28f62be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,9 @@ classifiers=[ "Natural Language :: English" ] readme = "README.md" +packages = [ + { include = "rdflib" }, +] [tool.poetry.scripts] rdfpipe = 'rdflib.tools.rdfpipe:main'