[package]
edition = "2024"
rust-version = "1.85"
name = "pydocstring"
version = "0.0.3"
authors = ["Ryuma Asai"]
build = false
exclude = [
".devcontainer/",
".githooks/",
".github/",
"target/",
"tests/",
"bindings/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-dependency Rust parser for Python docstrings (Google and NumPy styles) with a unified syntax tree and byte-precise source locations"
homepage = "https://github.com/qraqras/pydocstring"
documentation = "https://docs.rs/pydocstring"
readme = "README.md"
keywords = [
"python",
"docstring",
"parser",
"google",
"numpy",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT"
repository = "https://github.com/qraqras/pydocstring"
[lib]
name = "pydocstring"
path = "src/lib.rs"
[[example]]
name = "parse_google"
path = "examples/parse_google.rs"
[[example]]
name = "parse_numpy"
path = "examples/parse_numpy.rs"
[dependencies]