mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* feat: extract Daily Paper into a plugin * fix: satisfy clean-environment quality checks * fix: address daily paper review feedback
32 lines
757 B
TOML
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"
|