17 lines
447 B
TOML
17 lines
447 B
TOML
[project]
|
|
name = "kindle-zotero-importer"
|
|
version = "0.1.0"
|
|
description = "Generate Zotero annotation import plans from Kindle My Clippings.txt files."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
kindle-zotero-importer = "kindle_zotero_importer.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/kindle_zotero_importer"]
|