initial version

This commit is contained in:
Ignacio Ballesteros
2026-02-14 09:09:54 +01:00
commit 3738d1d7d8
16 changed files with 1037 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "org-to-quartz"
version = "0.1.0"
description = "Convert org notes to Quartz-compatible markdown"
requires-python = ">=3.11"
dependencies = [
"pybtex",
"requests",
"pyyaml",
]
[project.scripts]
org-to-quartz = "org_to_quartz.main:main"
[tool.setuptools.packages.find]
where = ["src"]