ReMe/pyproject.toml
2025-08-31 16:18:01 +08:00

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"