packaging: Try using absolute dependencies for uv to work.

This commit is contained in:
Andrew Hamilton 2024-12-07 23:21:16 +10:00
parent 79287c19ee
commit 8a00033a69
3 changed files with 6 additions and 7 deletions

View file

@ -8,7 +8,6 @@ except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="eris",
version="v2024.07.11",
description=("Eris maintains an up-to-date set of reports for every file in a codebase."),
@ -25,5 +24,7 @@ setup(name="eris",
"eris-webserver=eris.webserver:main", "pydoc_color=eris.pydoc_color:main"]},
install_requires=[
"pyinotify==0.9.6", "pygments==2.16.1", "docopt==0.6.2", "pillow==10.0.0", "toml==0.10.2",
"decorator==5.1.1", "pexpect==4.8.0", f"fill3 @ file://{REPO_PATH}/fill3",
f"termstr @ file://{REPO_PATH}/termstr", f"lscolors @ file://{REPO_PATH}/lscolors"])
"decorator==5.1.1", "pexpect==4.8.0",
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=fill3",
"termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=lscolors"])

View file

@ -8,7 +8,6 @@ except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="fill3",
version="v2024.07.11",
description=("Fill3 provides basic widgets for a tui."),
@ -17,4 +16,4 @@ setup(name="fill3",
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
packages=["fill3"],
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"])

View file

@ -8,7 +8,6 @@ except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="lscolors",
version="v2024.07.11",
description=("Give coloring for file types as in the ls command."),
@ -18,4 +17,4 @@ setup(name="lscolors",
license="Artistic 2.0",
packages=["lscolors"],
package_data={"lscolors": ["LS_COLORS.sh"]},
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.07.11#subdirectory=termstr"])