codegraph-python 0.1.0

Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files
Documentation
[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]
# Core graph database
codegraph = "0.1.1"

# Python AST parsing
rustpython-parser = "0.4"
rustpython-ast = "0.4"

# Error handling
thiserror = "1.0"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# File system utilities
walkdir = "2.0"

# Parallel processing
rayon = "1.10"

# Structured logging
tracing = "0.1"

[dev-dependencies]
# Benchmarking
criterion = "0.5"

# Temporary files for testing
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"

# Additional examples will be added as features are implemented
# [[example]]
# name = "call_graph"
# path = "examples/call_graph.rs"
#
# [[example]]
# name = "dependency_analysis"
# path = "examples/dependency_analysis.rs"
#
# [[example]]
# name = "project_stats"
# path = "examples/project_stats.rs"