mirror of
https://github.com/reconurge/flowsint.git
synced 2026-04-30 03:09:05 -05:00
feat: update licence
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "flowsint-api"
|
name = "flowsint-api"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
license = "AGPL-3.0-or-later"
|
||||||
description = "API server for flowsint"
|
description = "API server for flowsint"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
packages = [{ include = "app" }]
|
packages = [{ include = "app" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "flowsint-app",
|
"name": "flowsint-app",
|
||||||
"productName": "Flowsint",
|
"productName": "Flowsint",
|
||||||
|
"license": "AGPL-3.0-or-later",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Graph analysis and intelligence platform to help you discover hidden relationships and insights.",
|
"description": "Graph analysis and intelligence platform to help you discover hidden relationships and insights.",
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ export interface Transform {
|
|||||||
params_schema: TransformParamSchemaItem[]
|
params_schema: TransformParamSchemaItem[]
|
||||||
settings?: Record<string, string>
|
settings?: Record<string, string>
|
||||||
icon: string | null
|
icon: string | null
|
||||||
|
wobblyType?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
// ================================
|
// ================================
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "flowsint-core"
|
name = "flowsint-core"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Core utilities and base classes for flowsint modules"
|
description = "Core utilities and base classes for flowsint modules"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
packages = [{ include = "flowsint_core", from = "src" }]
|
packages = [{ include = "flowsint_core", from = "src" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
@@ -16,4 +16,4 @@ from .core.vault import *
|
|||||||
from .utils import *
|
from .utils import *
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.0"
|
||||||
__author__ = "EliottElek <dexxterrmorgan@proton.me>"
|
__author__ = "dextmorgn <dexxterrmorgan@proton.me>"
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "flowsint-transforms"
|
name = "flowsint-transforms"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
license = "AGPL-3.0-or-later"
|
||||||
description = "Transform modules for flowsint"
|
description = "Transform modules for flowsint"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
packages = [{ include = "tools", from = "src" }]
|
packages = [{ include = "tools", from = "src" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
@@ -3,6 +3,6 @@ Flowsint Transforms - Transform modules for flowsint
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.0"
|
||||||
__author__ = "EliottElek <dexxterrmorgan@proton.me>"
|
__author__ = "dextmorgn <dexxterrmorgan@proton.me>"
|
||||||
|
|
||||||
__all__ = []
|
__all__ = []
|
||||||
@@ -6,6 +6,6 @@ from .base import Tool
|
|||||||
from .dockertool import DockerTool
|
from .dockertool import DockerTool
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.0"
|
||||||
__author__ = "EliottElek <dexxterrmorgan@proton.me>"
|
__author__ = "dextmorgn <dexxterrmorgan@proton.me>"
|
||||||
|
|
||||||
__all__ = ["Tool", "DockerTool"]
|
__all__ = ["Tool", "DockerTool"]
|
||||||
@@ -2,7 +2,8 @@
|
|||||||
name = "flowsint-types"
|
name = "flowsint-types"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Pydantic models for flowsint"
|
description = "Pydantic models for flowsint"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
license = "AGPL-3.0-or-later"
|
||||||
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
packages = [{ include = "flowsint_types", from = "src" }]
|
packages = [{ include = "flowsint_types", from = "src" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ from .website import Website
|
|||||||
from .whois import Whois
|
from .whois import Whois
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.0"
|
||||||
__author__ = "EliottElek <dexxterrmorgan@proton.me>"
|
__author__ = "dextmorgn <dexxterrmorgan@proton.me>"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Location",
|
"Location",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "flowsint-types"
|
name = "flowsint-types"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Pydantic models for flowsint"
|
description = "Pydantic models for flowsint"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
packages = [{ include = "flowsint_types" }]
|
packages = [{ include = "flowsint_types" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "flowsint",
|
"name": "flowsint",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
|
"license": "AGPL-3.0-or-later",
|
||||||
"description": "Graph analysis and intelligence platform",
|
"description": "Graph analysis and intelligence platform",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "flowsint"
|
name = "flowsint"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Flowsint multi-module project"
|
description = "Flowsint multi-module project"
|
||||||
authors = ["EliottElek <dexxterrmorgan@proton.me>"]
|
authors = ["dextmorgn <dexxterrmorgan@proton.me>"]
|
||||||
package-mode = false
|
package-mode = false
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user