Skip to content

Commit db0a8b2

Browse files
committed
Fix licenses
1 parent 7b331d8 commit db0a8b2

File tree

10 files changed

+19
-21
lines changed

10 files changed

+19
-21
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ edition = "2021"
5151
# Make sure to also bump `apis/node/python/__init__.py` version.
5252
version = "0.3.11"
5353
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
54-
documentation = "https://dora.carsmos.ai"
54+
documentation = "https://dora-rs.ai"
5555
license = "Apache-2.0"
5656
repository = "https://github.com/dora-rs/dora/"
5757

node-hub/dora-dav1d/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "dora-dav1d"
33
edition = "2021"
4+
license = "BSD-2-Clause"
45

56
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
67

node-hub/dora-dav1d/pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ build-backend = "maturin"
55
[project]
66
name = "dora-dav1d"
77
dynamic = ["version"]
8-
license = { text = "MIT" }
8+
license = { text = "BSD-2-Clause" }
99
requires-python = ">=3.8"
1010

11-
dependencies = [
12-
"maturin>=1.8.2",
13-
]
11+
dependencies = ["maturin>=1.8.2"]
1412

1513
scripts = { "dora-dav1d" = "dora_dav1d:py_main" }
1614

node-hub/dora-dav1d/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn py_main(_py: Python) -> eyre::Result<()> {
122122

123123
#[cfg(feature = "python")]
124124
#[pymodule]
125-
fn dora_kit_car(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
125+
fn dora_dav1d(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
126126
m.add_function(wrap_pyfunction!(py_main, &m)?)?;
127127
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
128128
Ok(())

node-hub/dora-phi4/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dora-phi4"
3-
version = "0.0.0"
3+
version = "0.3.11"
44
authors = [{ name = "Somay", email = "[email protected]" }]
55
description = "DORA node for Phi-4 multimodal model"
66
license = { text = "MIT" }

node-hub/dora-rav1e/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
version.workspace = true
55
description.workspace = true
66
documentation.workspace = true
7-
license.workspace = true
7+
license = "BSD-2-Clause"
88
repository.workspace = true
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -31,4 +31,3 @@ pyo3 = { workspace = true, features = [
3131
name = "dora_rav1e"
3232
path = "src/lib.rs"
3333
crate-type = ["lib", "cdylib"]
34-

node-hub/dora-rav1e/pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ build-backend = "maturin"
55
[project]
66
name = "dora-rav1e"
77
dynamic = ["version"]
8-
license = { text = "MIT" }
8+
license = { text = "BSD-2-Clause" }
99
requires-python = ">=3.8"
1010

11-
dependencies = [
12-
"maturin>=1.8.2",
13-
]
11+
dependencies = ["maturin>=1.8.2"]
1412

1513
scripts = { "dora-rav1e" = "dora_rav1e:py_main" }
1614

node-hub/dora-rav1e/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ fn py_main(_py: Python) -> eyre::Result<()> {
364364

365365
#[cfg(feature = "python")]
366366
#[pymodule]
367-
fn dora_kit_car(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
367+
fn dora_rav1e(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
368368
m.add_function(wrap_pyfunction!(py_main, &m)?)?;
369369
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
370370
Ok(())

node-hub/llama-factory-recorder/pyproject.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
name = "llama-factory-recorder"
33
version = "0.3.11"
44
authors = [
5-
{ name = "Haixuan Xavier Tao", email = "[email protected]" },
6-
{ name = "Enzo Le Van", email = "[email protected]" },
5+
{ name = "Haixuan Xavier Tao", email = "[email protected]" },
6+
{ name = "Enzo Le Van", email = "[email protected]" },
77
]
8+
license = { file = "MIT" }
89
description = "Dora Node for VLM"
910

1011
requires-python = ">=3.8"
1112

1213
dependencies = [
13-
"dora-rs >= 0.3.9",
14-
"pillow >= 10.4.0",
15-
"opencv-python >= 4.1.1",
14+
"dora-rs >= 0.3.9",
15+
"pillow >= 10.4.0",
16+
"opencv-python >= 4.1.1",
1617
]
1718

1819
[dependency-groups]

node-hub/opencv-plot/pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[project]
22
name = "opencv-plot"
33
version = "0.3.11"
4+
license = { file = "MIT" }
45
authors = [
5-
{ name = "Haixuan Xavier Tao", email = "[email protected]" },
6-
{ name = "Enzo Le Van", email = "[email protected]" },
6+
{ name = "Haixuan Xavier Tao", email = "[email protected]" },
7+
{ name = "Enzo Le Van", email = "[email protected]" },
78
]
89
description = "Dora Node for plotting text and bbox on image with OpenCV"
910

0 commit comments

Comments
 (0)