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

16
pyargus/pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "pyargus"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.maturin]
features = ["pyo3/extension-module"]