-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
# >=77 for PEP 639 SPDX license expression support
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "memd"
dynamic = ["version"]
description = "Agent-driven project-memory curator"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "lowcache" }]
requires-python = ">=3.10"
keywords = ["ai", "agents", "memory", "context", "claude", "llm", "curator"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/lowcache/memd"
Repository = "https://github.com/lowcache/memd"
Issues = "https://github.com/lowcache/memd/issues"
[project.scripts]
memd = "memd.cli:main"
# attr targets memd.__init__ explicitly: plain "memd.__version__" resolves to
# the top-level memd.py shim (flat layout name collision), not the package.
[tool.setuptools.dynamic]
version = {attr = "memd.__init__.__version__"}
[tool.setuptools.packages.find]
include = ["memd*"]