- Get rid of helper functions. It is not that much more verbose to create signals with `argus.FloatSignal(...)` than `argus.signal(..., dtype=argus.dtype.float64`). - Make the package hierarchy flat: everything is under `argus`. If this is an issue, it can be changed in the future. - Add type hints for interval types.
21 lines
373 B
TOML
21 lines
373 B
TOML
[package]
|
|
name = "pyargus"
|
|
version = "0.1.1"
|
|
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "pyargus"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
argus = { version = "0.1.0", path = "../argus" }
|
|
derive_more = "0.99.17"
|
|
log = "0.4.20"
|
|
paste = "1.0.14"
|
|
pyo3 = "0.19.2"
|
|
pyo3-log = "0.8.3"
|
|
ariadne = "0.3.0"
|