[package]
edition = "2024"
name = "rypip"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pip-like tool that builds Python packages as native Rust binaries and converts them into Rust crates, optionally with PyO3 bindings."
homepage = "https://github.com/rexlunae/rython"
documentation = "https://docs.rs/rypip"
readme = "README.md"
keywords = [
"python",
"pip",
"transpiler",
"packaging",
"build-tool",
]
categories = [
"command-line-utilities",
"development-tools::build-utils",
]
license = "Apache-2.0"
repository = "https://github.com/rexlunae/rython"
resolver = "2"
[lib]
name = "rypip"
path = "src/lib.rs"
[[bin]]
name = "rypip"
path = "src/main.rs"
[[test]]
name = "convert_tests"
path = "tests/convert_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.proc-macro2]
version = "1.0"
[dependencies.python-ast]
version = "1.1.0"
[dependencies.quote]
version = "1.0"
[dependencies.rust-format]
version = "0.3"
[dependencies.toml]
version = "0.8"