fresh-continent-76371
06/03/2024, 3:59 AM[tool.poetry]
name = "some_ubername"
...
packages = [
{include = "package_1", from="src"},
{include = "package_2", from="src"},
{include = "package_3", from="src"},
]
What I am attempting to do, is have three wheels, produced, package_1, 2 and 3
but I get into a trap that pants seems to think there are ambiguous owners.
is this "pattern" above used anywhere, or should I split to three different folders, or pyproject.toml's ?fresh-continent-76371
06/03/2024, 4:00 AMfresh-continent-76371
06/03/2024, 12:39 PMpython_distributuon
entries, as siblings, where it is "clear" from sources includes, that
1. python_distribution(1) --> src/package_1
2. python_distribution(2) --> src/package_2
3. python_distribution(3) --> src/package_3
It seems, that pants can't have them as siblings.broad-processor-92400
06/04/2024, 12:35 AM