build: explicitly specify packages
in pyproject.toml
(#2280) · RDFLib/rdflib@334787b (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit 334787b
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.
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -22,6 +22,9 @@ classifiers=[ | ||
22 | 22 | "Natural Language :: English" |
23 | 23 | ] |
24 | 24 | readme = "README.md" |
25 | +packages = [ | |
26 | + { include = "rdflib" }, | |
27 | +] | |
25 | 28 | |
26 | 29 | [tool.poetry.scripts] |
27 | 30 | rdfpipe = 'rdflib.tools.rdfpipe:main' |