-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "forgetted"
version = "0.2.1"
description = "Selective memory governance for AI agents — branch the timeline, never merge back. By Hermes Labs."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
authors = [
{name = "Hermes Labs", email = "roli@hermes-labs.ai"},
]
keywords = ["llm", "agent", "memory", "privacy", "ai-safety", "fork", "selective-forget"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.optional-dependencies]
trash = ["send2trash>=2.1.0"]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.1.0",
"ruff>=0.15.11",
]
[project.urls]
Homepage = "https://hermes-labs.ai"
Repository = "https://github.com/hermes-labs-ai/forgetted"
Documentation = "https://github.com/hermes-labs-ai/forgetted#readme"
Issues = "https://github.com/hermes-labs-ai/forgetted/issues"
Changelog = "https://github.com/hermes-labs-ai/forgetted/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["forgetted*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["UP007", "E501"]