eris/pyproject.toml
Andrew Hamilton 6ec0d4e1ff Fix pyinotify dependency to work with latest pythons
- pyinotify is not working anymore since it needs asyncore which has been
  removed from the standard library
- Someone created pyinotify-elephant-fork to superseed pyinotify
2025-06-03 14:00:12 +10:00

43 lines
965 B
TOML

tool.uv.package = true
[project]
name = "eris"
version = "v2024.12.28"
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 = [
"decorator==5.1.1",
"docopt==0.6.2",
"fill3",
"lscolors",
"pexpect==4.8.0",
"pillow==10.0.0",
"pygments==2.16.1",
"pyinotify-elephant-fork==0.0.1",
"termstr",
"toml==0.10.2",
]
[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"
[tool.setuptools]
packages=["eris"]