This reverts commit b1eb3d30f5.
- Other projects couldn't depend on subprojects anymore.
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
tool.uv.package = true
|
|
|
|
[project]
|
|
name = "eris"
|
|
version = "v2024.12.20"
|
|
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 @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=fill3",
|
|
"lscolors @ git+https://gitlab.com/ahamilton/eris@v2024.12.18#subdirectory=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",
|
|
"toml==0.10.2",
|
|
]
|
|
|
|
[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"]
|
|
py-modules=["sorted_collection"]
|