summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIwan Aucamp <aucampia@gmail.com>2023-03-17 00:46:45 +0100
committerGitHub <noreply@github.com>2023-03-17 00:46:45 +0100
commit334787be6994cb12a27093c0ebdbf11dfd68f26d (patch)
treef4525f15e54521e9845e72baae31da8e9878c00e
parent7beae75244dadd7e4d47af41c8bc684e2897a010 (diff)
downloadrdflib-334787be6994cb12a27093c0ebdbf11dfd68f26d.tar.gz
build: explicitly specify `packages` in `pyproject.toml` (#2280)
The default behaviour makes it more of a hassle to republish RDFLib to a separate package, something which I plan to do for testing purposes and possibly other reasons. More changes may follow in a similar vein.
-rw-r--r--pyproject.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e687d17c..ce28f62b 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'