21 lines
406 B
TOML
21 lines
406 B
TOML
[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"]
|