-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.53 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
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "memclaw"
version = "1.1.2"
description = "A lightweight, local-first personal memory assistant powered by AI"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Emanuilo Jovanovic", email = "emanuilo.jovanovic@hotmail.com" },
]
requires-python = ">=3.10"
keywords = ["memory", "ai", "assistant", "vector-search", "personal-knowledge", "second-brain"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"anthropic>=0.40.0",
"openai>=1.0.0",
"numpy>=1.24.0",
"click>=8.0.0",
"rich>=13.0.0",
"python-telegram-bot>=21.0",
"slack-bolt>=1.18.0",
"aiohttp>=3.9.0",
"httpx>=0.27.0",
"beautifulsoup4>=4.12.0",
"loguru>=0.7.0",
"python-dotenv>=1.0.0",
"neonize>=0.3.16",
]
[project.scripts]
memclaw = "memclaw.cli:cli"
[project.urls]
Repository = "https://github.com/emanuilo/memclaw"
Issues = "https://github.com/emanuilo/memclaw/issues"
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"pytest-asyncio>=1.0.0",
"ruff>=0.9.0",
]
[tool.hatch.build.targets.wheel]
packages = ["memclaw"]