diff --git a/eris/pyproject.toml b/eris/pyproject.toml index 134c60a..77d3c8e 100644 --- a/eris/pyproject.toml +++ b/eris/pyproject.toml @@ -1,5 +1,10 @@ tool.uv.package = true +[tool.uv.sources] +lscolors = { path = "../lscolors", editable = true } +termstr = { path = "../termstr", editable = true } +fill3 = { path = "../fill3", editable = true } + [project] name = "eris" version = "v2024.12.18" @@ -12,13 +17,13 @@ requires-python = ">=3.11" dependencies = [ "decorator==5.1.1", "docopt==0.6.2", - "fill3 @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=fill3", - "lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=lscolors", + "fill3", + "lscolors", "pexpect==4.8.0", "pillow==10.0.0", "pygments==2.16.1", "pyinotify==0.9.6", - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", + "termstr", "toml==0.10.2", ] diff --git a/eris/uv.lock b/eris/uv.lock index 63e018b..2effee4 100644 --- a/eris/uv.lock +++ b/eris/uv.lock @@ -43,32 +43,38 @@ dependencies = [ requires-dist = [ { name = "decorator", specifier = "==5.1.1" }, { name = "docopt", specifier = "==0.6.2" }, - { name = "fill3", git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18" }, - { name = "lscolors", git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18" }, + { name = "fill3", editable = "../fill3" }, + { name = "lscolors", editable = "../lscolors" }, { name = "pexpect", specifier = "==4.8.0" }, { name = "pillow", specifier = "==10.0.0" }, { name = "pygments", specifier = "==2.16.1" }, { name = "pyinotify", specifier = "==0.9.6" }, - { name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }, + { name = "termstr", editable = "../termstr" }, { name = "toml", specifier = "==0.10.2" }, ] [[package]] name = "fill3" version = "2024.12.18" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=fill3&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" } +source = { editable = "../fill3" } dependencies = [ { name = "termstr" }, ] +[package.metadata] +requires-dist = [{ name = "termstr", virtual = "../termstr" }] + [[package]] name = "lscolors" version = "2024.12.18" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=lscolors&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" } +source = { editable = "../lscolors" } dependencies = [ { name = "termstr" }, ] +[package.metadata] +requires-dist = [{ name = "termstr", virtual = "../termstr" }] + [[package]] name = "pexpect" version = "4.8.0" @@ -136,11 +142,14 @@ sdist = { url = "https://files.pythonhosted.org/packages/e3/c0/fd5b18dde17c12496 [[package]] name = "termstr" version = "2024.12.18" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" } +source = { editable = "../termstr" } dependencies = [ { name = "cwcwidth" }, ] +[package.metadata] +requires-dist = [{ name = "cwcwidth", specifier = "==0.1.5" }] + [[package]] name = "toml" version = "0.10.2" diff --git a/fill3/pyproject.toml b/fill3/pyproject.toml index 151df44..8799e54 100644 --- a/fill3/pyproject.toml +++ b/fill3/pyproject.toml @@ -1,5 +1,8 @@ tool.uv.package = true +[tool.uv.sources] +termstr = { path = "../termstr" } + [project] name = "fill3" version = "v2024.12.18" @@ -9,7 +12,7 @@ authors = [ ] requires-python = ">=3.11" dependencies = [ - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", + "termstr", ] [project.urls] diff --git a/fill3/uv.lock b/fill3/uv.lock index 6e50813..f09c5f5 100644 --- a/fill3/uv.lock +++ b/fill3/uv.lock @@ -16,12 +16,15 @@ dependencies = [ ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }] +requires-dist = [{ name = "termstr", virtual = "../termstr" }] [[package]] name = "termstr" version = "2024.12.18" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" } +source = { virtual = "../termstr" } dependencies = [ { name = "cwcwidth" }, ] + +[package.metadata] +requires-dist = [{ name = "cwcwidth", specifier = "==0.1.5" }] diff --git a/lscolors/pyproject.toml b/lscolors/pyproject.toml index 676a100..3369232 100644 --- a/lscolors/pyproject.toml +++ b/lscolors/pyproject.toml @@ -5,6 +5,9 @@ build-backend = "hatchling.build" [tool.hatch.metadata] allow-direct-references = true +[tool.uv.sources] +termstr = { path = "../termstr" } + [project] name = "lscolors" version = "v2024.12.18" @@ -14,7 +17,7 @@ authors = [ ] requires-python = ">=3.11" dependencies = [ - "termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=termstr", + "termstr", ] [project.urls] diff --git a/lscolors/uv.lock b/lscolors/uv.lock index aa9ed5a..ba7557a 100644 --- a/lscolors/uv.lock +++ b/lscolors/uv.lock @@ -16,12 +16,15 @@ dependencies = [ ] [package.metadata] -requires-dist = [{ name = "termstr", git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18" }] +requires-dist = [{ name = "termstr", virtual = "../termstr" }] [[package]] name = "termstr" version = "2024.12.18" -source = { git = "https://gitlab.com/ahamilton/eris?subdirectory=termstr&rev=v2024.12.18#42acd6db75cfb366e4f6b5de0bf7c7508eec6796" } +source = { virtual = "../termstr" } dependencies = [ { name = "cwcwidth" }, ] + +[package.metadata] +requires-dist = [{ name = "cwcwidth", specifier = "==0.1.5" }] diff --git a/termstr/pyproject.toml b/termstr/pyproject.toml index 8c22922..8157768 100644 --- a/termstr/pyproject.toml +++ b/termstr/pyproject.toml @@ -13,3 +13,5 @@ dependencies = [ [project.urls] Homepage = "https://github.com/ahamilton/eris" +[tool.setuptools] +py-modules=["termstr"]