-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 973 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 973 Bytes
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
[project]
name = "backscroll"
version = "0.1.0"
description = "A local, searchable memory of everything on your screen -- queryable by Claude via MCP. An open-source, zero-dependency Screenpipe alternative."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "EarthPilot" }]
keywords = ["screenpipe", "rewind", "ocr", "mcp", "claude", "screen-recording", "personal-memory"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/AnthonyDavidAdams/backscroll"
Repository = "https://github.com/AnthonyDavidAdams/backscroll"
[project.scripts]
backscroll = "backscroll.cli:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["backscroll"]
[tool.setuptools.package-data]
backscroll = ["ocr_helper/*.swift"]