[package]
name = "codegraph-python"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["anvanster"]
license = "Apache-2.0"
description = "Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files"
repository = "https://github.com/anvanster/codegraph-python"
keywords = ["parser", "python", "code-analysis", "ast", "graph"]
categories = ["development-tools", "parsing"]
[dependencies]
codegraph = "0.1.1"
rustpython-parser = "0.4"
rustpython-ast = "0.4"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.0"
rayon = "1.10"
tracing = "0.1"
[dev-dependencies]
criterion = "0.5"
tempfile = "3.0"
[[bench]]
name = "parsing"
harness = false
[lib]
name = "codegraph_python"
path = "src/lib.rs"
[[example]]
name = "basic_parse"
path = "examples/basic_parse.rs"
[[example]]
name = "parse_project"
path = "examples/parse_project.rs"