-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 919 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
33
34
35
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Stickys"
version = "0.1.0"
description = "Gnosis Sticky Notes — desktop stickies with Codex/Wraith integrations"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Gnosis", email = "dev@nuts.services" }]
license = { text = "Proprietary" }
keywords = ["sticky notes", "desktop", "windows", "tray", "codex", "mcp"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pillow",
"pystray",
"psutil",
"tkinterdnd2",
"keyboard; platform_system == 'Windows'",
"pywin32; platform_system == 'Windows'",
]
[project.scripts]
stickys = "stickys.__main__:main"
[tool.setuptools]
packages = ["stickys", "stickys.tools"]
include-package-data = true
[tool.setuptools.package-data]
# Include MCP tools when copied under stickys/mcp_tools
stickys = ["mcp_tools/**"]