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="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"])