chore: set python build system in pyproject.toml

- fix local package install
- local packages requirement url format
This commit is contained in:
jo 2022-01-22 16:48:32 +01:00 committed by Kyle Robbertze
parent 441028a1d2
commit 0f8cb1a5ed
9 changed files with 25 additions and 4 deletions

View file

@ -38,8 +38,8 @@ setup(
extras_require={
"dev": [
"distro",
f"libretime-api-client @ file://localhost/{here.parent / 'api_client'}#egg=libretime_api_client",
f"libretime-shared @ file://localhost/{here.parent / 'shared'}#egg=libretime_shared",
f"libretime-api-client @ file://localhost{here.parent / 'api_client'}",
f"libretime-shared @ file://localhost{here.parent / 'shared'}",
],
},
zip_safe=False,