eris/pyproject.toml

49 lines
1.3 KiB
TOML
Raw Normal View History

tool.uv.package = true
[project]
name = "eris"
2025-06-09 15:53:06 +10:00
version = "v2025.06.09"
description = "Eris maintains an up-to-date set of reports for every file in a codebase."
readme = "README.md"
authors = [
{ name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" },
]
requires-python = ">=3.11"
dependencies = [
"docopt-ng==0.9.0",
2025-06-09 15:53:06 +10:00
"fill3 @ git+https://gitlab.com/ahamilton/eris@v2025.06.09#subdirectory=fill3",
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2025.06.09#subdirectory=lscolors",
2025-06-03 16:34:14 +10:00
"pexpect==4.9.0",
"pillow==11.2.1",
"pygments==2.19.1",
"pyinotify-elephant-fork==0.0.1",
2025-06-09 15:53:06 +10:00
"termstr @ git+https://gitlab.com/ahamilton/eris@v2025.06.09#subdirectory=termstr",
]
2024-12-28 17:29:38 +10:00
[tool.uv.sources]
fill3 = { workspace = true }
lscolors = { workspace = true }
termstr = { workspace = true }
[tool.uv.workspace]
members = ["termstr", "fill3", "lscolors"]
[project.scripts]
eris = "eris.__main__:entry_point"
eris-worker = "eris.worker:main"
eris-webserver = "eris.webserver:main"
pydoc_color = "eris.pydoc_color:main"
[project.urls]
homepage = "https://github.com/ahamilton/eris"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages=["eris"]
[tool.setuptools.package-data]
"eris" = ["tools.toml"]