ReMe/plugins/auto-fin/pyproject.toml
jinliyl 7e25d4679b
feat: auto-tag plugin-generated reports (#534)
* feat(plugins): auto-tag generated reports

* fix(logging): forward host records on Python 3.13

* refactor(tags): decouple auto tagging from index updates

* fix(tags): bind auto tagging to configured index

* fix(tags): preserve standalone default index

* fix(tags): make auto tagging best effort
2026-09-11 11:52:52 +08:00

31 lines
696 B
TOML

[project]
name = "reme-auto-fin"
version = "0.1.3"
description = "Auto Fin example plugin for ReMe."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"reme-ai>=0.4.1.12",
]
[project.entry-points."reme.plugins"]
auto-fin = "reme_auto_fin"
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["reme_auto_fin"]
include-package-data = true
[tool.setuptools.package-data]
reme_auto_fin = ["*.yaml"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
pythonpath = ["src", "../.."]
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"