-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.32 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
[project]
name = "claude-note"
dynamic = ["version"]
description = "Session logging and knowledge synthesis for Claude Code"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "claude-note contributors" }
]
keywords = ["claude", "claude-code", "notes", "knowledge-management", "obsidian"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [] # Pure stdlib, no dependencies
[project.scripts]
claude-note = "claude_note.cli:main"
[project.urls]
Homepage = "https://github.com/artemiin/claude-note"
Repository = "https://github.com/artemiin/claude-note"
Issues = "https://github.com/artemiin/claude-note/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/claude_note/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/claude_note"]