feat: add python bindings for argus

This commit is contained in:
Anand Balakrishnan 2023-04-04 14:41:17 -07:00
parent 2b447409a1
commit f8ec8857d4
No known key found for this signature in database
5 changed files with 416 additions and 6 deletions

13
pyargus/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "pyargus"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pyargus"
crate-type = ["cdylib"]
[dependencies]
argus-core = { version = "0.1.0", path = "../argus-core" }
pyo3 = "0.18.1"