Specify the build-system in pyproject.toml
- Needed so that "uv tool install" can work with a git url. - pipx seemed to work without this. - Also need to ensure that tools.toml is installed as package-data.
This commit is contained in:
parent
06e9250888
commit
0effc3da49
1 changed files with 7 additions and 0 deletions
|
|
@ -37,5 +37,12 @@ pydoc_color = "eris.pydoc_color:main"
|
||||||
[project.urls]
|
[project.urls]
|
||||||
homepage = "https://github.com/ahamilton/eris"
|
homepage = "https://github.com/ahamilton/eris"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools>=61.0"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
packages=["eris"]
|
packages=["eris"]
|
||||||
|
|
||||||
|
[tool.setuptools.package-data]
|
||||||
|
"eris" = ["tools.toml"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue