mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
36 lines
784 B
TOML
36 lines
784 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "reme_ai"
|
|
version = "0.1.0"
|
|
description = "Remember me of memory and experience"
|
|
authors = [{ name = "reme_ai_team", email = "reme_ai_team@alibaba-inc.com" }]
|
|
license = { file = "LICENSE" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"flowllm>=0.1.3",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["reme_ai*"]
|
|
exclude = ["memoryscope*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
experiencemaker = [
|
|
"config/*.yaml",
|
|
"**/*.yaml",
|
|
]
|
|
|
|
[project.scripts]
|
|
reme = "reme_ai.app:main"
|