ReMe/plugins/daily_paper/pyproject.toml
jinliyl 513fb5b7f4
feat: extract Daily Paper into an independently packaged plugin (#491)
* feat: extract Daily Paper into a plugin

* fix: satisfy clean-environment quality checks

* fix: address daily paper review feedback
2026-08-26 17:32:46 +08:00

32 lines
757 B
TOML

[project]
name = "reme-daily-paper"
version = "0.1.0"
description = "Daily Paper research and reading-note plugin for ReMe."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"pypdf>=5.0.0",
"reme-ai[core]>=0.4.1.8",
]
[project.entry-points."reme.plugins"]
daily-paper = "reme_daily_paper"
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["reme_daily_paper"]
include-package-data = true
[tool.setuptools.package-data]
reme_daily_paper = ["*.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"