Browse Source

Fix licenses

tags/v0.3.12-rc0
haixuantao 9 months ago
parent
commit
db0a8b2546
10 changed files with 19 additions and 21 deletions
  1. +1
    -1
      Cargo.toml
  2. +1
    -0
      node-hub/dora-dav1d/Cargo.toml
  3. +2
    -4
      node-hub/dora-dav1d/pyproject.toml
  4. +1
    -1
      node-hub/dora-dav1d/src/lib.rs
  5. +1
    -1
      node-hub/dora-phi4/pyproject.toml
  6. +1
    -2
      node-hub/dora-rav1e/Cargo.toml
  7. +2
    -4
      node-hub/dora-rav1e/pyproject.toml
  8. +1
    -1
      node-hub/dora-rav1e/src/lib.rs
  9. +6
    -5
      node-hub/llama-factory-recorder/pyproject.toml
  10. +3
    -2
      node-hub/opencv-plot/pyproject.toml

+ 1
- 1
Cargo.toml View File

@@ -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/"



+ 1
- 0
node-hub/dora-dav1d/Cargo.toml View File

@@ -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



+ 2
- 4
node-hub/dora-dav1d/pyproject.toml View File

@@ -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" }



+ 1
- 1
node-hub/dora-dav1d/src/lib.rs View File

@@ -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(())


+ 1
- 1
node-hub/dora-phi4/pyproject.toml View File

@@ -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" }


+ 1
- 2
node-hub/dora-rav1e/Cargo.toml View File

@@ -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"]


+ 2
- 4
node-hub/dora-rav1e/pyproject.toml View File

@@ -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" }



+ 1
- 1
node-hub/dora-rav1e/src/lib.rs View File

@@ -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(())


+ 6
- 5
node-hub/llama-factory-recorder/pyproject.toml View File

@@ -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]


+ 3
- 2
node-hub/opencv-plot/pyproject.toml View File

@@ -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"



Loading…
Cancel
Save