From aecec7040825e36f1ae3c0b225a1c7c263a785ae Mon Sep 17 00:00:00 2001 From: dextmorgn Date: Sat, 8 Nov 2025 20:26:33 +0100 Subject: [PATCH] feat: update licence --- flowsint-api/pyproject.toml | 3 ++- flowsint-app/package.json | 1 + flowsint-app/src/types/transform.ts | 1 + flowsint-core/pyproject.toml | 2 +- flowsint-core/src/flowsint_core/__init__.py | 2 +- flowsint-transforms/pyproject.toml | 3 ++- flowsint-transforms/src/flowsint_transforms/__init__.py | 2 +- flowsint-transforms/src/tools/__init__.py | 2 +- flowsint-types/pyproject.toml | 3 ++- flowsint-types/src/flowsint_types/__init__.py | 2 +- flowsint-types/src/pyproject.toml | 2 +- package.json | 1 + pyproject.toml | 2 +- 13 files changed, 16 insertions(+), 10 deletions(-) diff --git a/flowsint-api/pyproject.toml b/flowsint-api/pyproject.toml index 7207281..114925d 100644 --- a/flowsint-api/pyproject.toml +++ b/flowsint-api/pyproject.toml @@ -1,8 +1,9 @@ [tool.poetry] name = "flowsint-api" version = "0.1.0" +license = "AGPL-3.0-or-later" description = "API server for flowsint" -authors = ["EliottElek "] +authors = ["dextmorgn "] packages = [{ include = "app" }] [tool.poetry.dependencies] diff --git a/flowsint-app/package.json b/flowsint-app/package.json index 6402394..13ad922 100644 --- a/flowsint-app/package.json +++ b/flowsint-app/package.json @@ -1,6 +1,7 @@ { "name": "flowsint-app", "productName": "Flowsint", + "license": "AGPL-3.0-or-later", "version": "1.0.0", "type": "module", "description": "Graph analysis and intelligence platform to help you discover hidden relationships and insights.", diff --git a/flowsint-app/src/types/transform.ts b/flowsint-app/src/types/transform.ts index a43998e..a98747d 100644 --- a/flowsint-app/src/types/transform.ts +++ b/flowsint-app/src/types/transform.ts @@ -32,6 +32,7 @@ export interface Transform { params_schema: TransformParamSchemaItem[] settings?: Record icon: string | null + wobblyType?: boolean } // ================================ diff --git a/flowsint-core/pyproject.toml b/flowsint-core/pyproject.toml index 9f90843..696bc26 100644 --- a/flowsint-core/pyproject.toml +++ b/flowsint-core/pyproject.toml @@ -2,7 +2,7 @@ name = "flowsint-core" version = "0.1.0" description = "Core utilities and base classes for flowsint modules" -authors = ["EliottElek "] +authors = ["dextmorgn "] packages = [{ include = "flowsint_core", from = "src" }] [tool.poetry.dependencies] diff --git a/flowsint-core/src/flowsint_core/__init__.py b/flowsint-core/src/flowsint_core/__init__.py index c6c2baa..1daf814 100644 --- a/flowsint-core/src/flowsint_core/__init__.py +++ b/flowsint-core/src/flowsint_core/__init__.py @@ -16,4 +16,4 @@ from .core.vault import * from .utils import * __version__ = "0.1.0" -__author__ = "EliottElek " +__author__ = "dextmorgn " diff --git a/flowsint-transforms/pyproject.toml b/flowsint-transforms/pyproject.toml index 2f3fc02..82f0c10 100644 --- a/flowsint-transforms/pyproject.toml +++ b/flowsint-transforms/pyproject.toml @@ -1,8 +1,9 @@ [tool.poetry] name = "flowsint-transforms" version = "0.1.0" +license = "AGPL-3.0-or-later" description = "Transform modules for flowsint" -authors = ["EliottElek "] +authors = ["dextmorgn "] packages = [{ include = "tools", from = "src" }] [tool.poetry.dependencies] diff --git a/flowsint-transforms/src/flowsint_transforms/__init__.py b/flowsint-transforms/src/flowsint_transforms/__init__.py index 0efb267..8b70fb3 100644 --- a/flowsint-transforms/src/flowsint_transforms/__init__.py +++ b/flowsint-transforms/src/flowsint_transforms/__init__.py @@ -3,6 +3,6 @@ Flowsint Transforms - Transform modules for flowsint """ __version__ = "0.1.0" -__author__ = "EliottElek " +__author__ = "dextmorgn " __all__ = [] \ No newline at end of file diff --git a/flowsint-transforms/src/tools/__init__.py b/flowsint-transforms/src/tools/__init__.py index 655347a..04029dc 100644 --- a/flowsint-transforms/src/tools/__init__.py +++ b/flowsint-transforms/src/tools/__init__.py @@ -6,6 +6,6 @@ from .base import Tool from .dockertool import DockerTool __version__ = "0.1.0" -__author__ = "EliottElek " +__author__ = "dextmorgn " __all__ = ["Tool", "DockerTool"] \ No newline at end of file diff --git a/flowsint-types/pyproject.toml b/flowsint-types/pyproject.toml index f72ce23..26815ba 100644 --- a/flowsint-types/pyproject.toml +++ b/flowsint-types/pyproject.toml @@ -2,7 +2,8 @@ name = "flowsint-types" version = "0.1.0" description = "Pydantic models for flowsint" -authors = ["EliottElek "] +license = "AGPL-3.0-or-later" +authors = ["dextmorgn "] packages = [{ include = "flowsint_types", from = "src" }] [tool.poetry.dependencies] diff --git a/flowsint-types/src/flowsint_types/__init__.py b/flowsint-types/src/flowsint_types/__init__.py index 2cfc2ac..5db0890 100644 --- a/flowsint-types/src/flowsint_types/__init__.py +++ b/flowsint-types/src/flowsint_types/__init__.py @@ -40,7 +40,7 @@ from .website import Website from .whois import Whois __version__ = "0.1.0" -__author__ = "EliottElek " +__author__ = "dextmorgn " __all__ = [ "Location", diff --git a/flowsint-types/src/pyproject.toml b/flowsint-types/src/pyproject.toml index 2c5a5e5..075294f 100644 --- a/flowsint-types/src/pyproject.toml +++ b/flowsint-types/src/pyproject.toml @@ -2,7 +2,7 @@ name = "flowsint-types" version = "0.1.0" description = "Pydantic models for flowsint" -authors = ["EliottElek "] +authors = ["dextmorgn "] packages = [{ include = "flowsint_types" }] [tool.poetry.dependencies] diff --git a/package.json b/package.json index 2203b5d..8aa12cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "flowsint", "version": "0.1.0", + "license": "AGPL-3.0-or-later", "description": "Graph analysis and intelligence platform", "private": true, "type": "module", diff --git a/pyproject.toml b/pyproject.toml index 1761973..39fcc9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "flowsint" version = "0.1.0" description = "Flowsint multi-module project" -authors = ["EliottElek "] +authors = ["dextmorgn "] package-mode = false [tool.poetry.dependencies]