diff --git a/Cargo.toml b/Cargo.toml index 5e262ca2..03c997f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ edition = "2021" # Make sure to also bump `apis/node/python/__init__.py` version. version = "0.3.11" description = "`dora` goal is to be a low latency, composable, and distributed data flow." -documentation = "https://dora.carsmos.ai" +documentation = "https://dora-rs.ai" license = "Apache-2.0" repository = "https://github.com/dora-rs/dora/" diff --git a/node-hub/dora-dav1d/Cargo.toml b/node-hub/dora-dav1d/Cargo.toml index a0475f23..3c78500d 100644 --- a/node-hub/dora-dav1d/Cargo.toml +++ b/node-hub/dora-dav1d/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "dora-dav1d" edition = "2021" +license = "BSD-2-Clause" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/node-hub/dora-dav1d/pyproject.toml b/node-hub/dora-dav1d/pyproject.toml index e11909e7..845e45f8 100644 --- a/node-hub/dora-dav1d/pyproject.toml +++ b/node-hub/dora-dav1d/pyproject.toml @@ -5,12 +5,10 @@ build-backend = "maturin" [project] name = "dora-dav1d" dynamic = ["version"] -license = { text = "MIT" } +license = { text = "BSD-2-Clause" } requires-python = ">=3.8" -dependencies = [ - "maturin>=1.8.2", -] +dependencies = ["maturin>=1.8.2"] scripts = { "dora-dav1d" = "dora_dav1d:py_main" } diff --git a/node-hub/dora-dav1d/src/lib.rs b/node-hub/dora-dav1d/src/lib.rs index 6f019381..aad95ebe 100644 --- a/node-hub/dora-dav1d/src/lib.rs +++ b/node-hub/dora-dav1d/src/lib.rs @@ -122,7 +122,7 @@ fn py_main(_py: Python) -> eyre::Result<()> { #[cfg(feature = "python")] #[pymodule] -fn dora_kit_car(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> { +fn dora_dav1d(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> { m.add_function(wrap_pyfunction!(py_main, &m)?)?; m.add("__version__", env!("CARGO_PKG_VERSION"))?; Ok(()) diff --git a/node-hub/dora-phi4/pyproject.toml b/node-hub/dora-phi4/pyproject.toml index 474f11b6..984f781d 100644 --- a/node-hub/dora-phi4/pyproject.toml +++ b/node-hub/dora-phi4/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dora-phi4" -version = "0.0.0" +version = "0.3.11" authors = [{ name = "Somay", email = "ssomay2002@gmail.com" }] description = "DORA node for Phi-4 multimodal model" license = { text = "MIT" } diff --git a/node-hub/dora-rav1e/Cargo.toml b/node-hub/dora-rav1e/Cargo.toml index 20f54934..217147bc 100644 --- a/node-hub/dora-rav1e/Cargo.toml +++ b/node-hub/dora-rav1e/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" version.workspace = true description.workspace = true documentation.workspace = true -license.workspace = true +license = "BSD-2-Clause" repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -31,4 +31,3 @@ pyo3 = { workspace = true, features = [ name = "dora_rav1e" path = "src/lib.rs" crate-type = ["lib", "cdylib"] - diff --git a/node-hub/dora-rav1e/pyproject.toml b/node-hub/dora-rav1e/pyproject.toml index d5aed30a..3c278629 100644 --- a/node-hub/dora-rav1e/pyproject.toml +++ b/node-hub/dora-rav1e/pyproject.toml @@ -5,12 +5,10 @@ build-backend = "maturin" [project] name = "dora-rav1e" dynamic = ["version"] -license = { text = "MIT" } +license = { text = "BSD-2-Clause" } requires-python = ">=3.8" -dependencies = [ - "maturin>=1.8.2", -] +dependencies = ["maturin>=1.8.2"] scripts = { "dora-rav1e" = "dora_rav1e:py_main" } diff --git a/node-hub/dora-rav1e/src/lib.rs b/node-hub/dora-rav1e/src/lib.rs index 149b39f7..44163f76 100644 --- a/node-hub/dora-rav1e/src/lib.rs +++ b/node-hub/dora-rav1e/src/lib.rs @@ -364,7 +364,7 @@ fn py_main(_py: Python) -> eyre::Result<()> { #[cfg(feature = "python")] #[pymodule] -fn dora_kit_car(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> { +fn dora_rav1e(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> { m.add_function(wrap_pyfunction!(py_main, &m)?)?; m.add("__version__", env!("CARGO_PKG_VERSION"))?; Ok(()) diff --git a/node-hub/llama-factory-recorder/pyproject.toml b/node-hub/llama-factory-recorder/pyproject.toml index 6bbf00f3..4a894bb2 100644 --- a/node-hub/llama-factory-recorder/pyproject.toml +++ b/node-hub/llama-factory-recorder/pyproject.toml @@ -2,17 +2,18 @@ name = "llama-factory-recorder" version = "0.3.11" authors = [ - { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }, - { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" }, + { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }, + { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" }, ] +license = { file = "MIT" } description = "Dora Node for VLM" requires-python = ">=3.8" dependencies = [ - "dora-rs >= 0.3.9", - "pillow >= 10.4.0", - "opencv-python >= 4.1.1", + "dora-rs >= 0.3.9", + "pillow >= 10.4.0", + "opencv-python >= 4.1.1", ] [dependency-groups] diff --git a/node-hub/opencv-plot/pyproject.toml b/node-hub/opencv-plot/pyproject.toml index ac4f8b7d..95f253ee 100644 --- a/node-hub/opencv-plot/pyproject.toml +++ b/node-hub/opencv-plot/pyproject.toml @@ -1,9 +1,10 @@ [project] name = "opencv-plot" version = "0.3.11" +license = { file = "MIT" } authors = [ - { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }, - { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" }, + { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }, + { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" }, ] description = "Dora Node for plotting text and bbox on image with OpenCV"