arroyo/pyproject.toml

26 lines
642 B
TOML

# [[file:arroyo-native-parser.org::*Python package definition][Python package definition:1]]
[project]
name = "arroyo"
version = "0.0.1"
description = "org-mode metadata extractor"
# license = "Hey Smell This"
readme = "README.org"
dependencies = ["click ~=8.1"]
requires-python = ">=3.10"
authors = [
{ name = "Ryan Rix", email = "code@whatthefuck.computer" }
]
[project.scripts]
arroyo = "arroyo.__main__:cli"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
module-name = "arroyo.arroyo_rs"
features = ["pyo3/extension-module"]
compatibility = "linux"
# Python package definition:1 ends here