funcnodes-core 0.3__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/PKG-INFO +8 -3
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/__init__.py +1 -1
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/pyproject.toml +9 -2
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/LICENSE +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/README.md +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/_logging.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/_setup.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/config.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/data.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/decorator/__init__.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/eventmanager.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/exceptions.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/graph.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/io.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/__init__.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/lib.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/libfinder.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/libparser.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/node.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/nodemaker.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/nodespace.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/triggerstack.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/__init__.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/data.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/functions.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/nodeutils.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/plugins.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/plugins_types.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/saving.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/serialization.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/special_types.py +0 -0
- {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/wrapper.py +0 -0
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: funcnodes-core
|
|
3
|
-
Version: 0.3
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: core package for funcnodes
|
|
5
|
-
License:
|
|
5
|
+
License: AGPL-3.0
|
|
6
6
|
Author: Julian Kimmig
|
|
7
7
|
Author-email: julian.kimmig@linkdlab.de
|
|
8
8
|
Requires-Python: >=3.11
|
|
9
|
-
Classifier:
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Education
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
10
15
|
Classifier: Programming Language :: Python :: 3
|
|
11
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "funcnodes-core"
|
|
3
|
-
version = "0.3"
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "core package for funcnodes"
|
|
5
5
|
authors = ["Julian Kimmig <julian.kimmig@linkdlab.de>"]
|
|
6
6
|
readme = "README.md"
|
|
7
|
-
license = "
|
|
7
|
+
license = "AGPL-3.0"
|
|
8
|
+
classifiers = [
|
|
9
|
+
"Development Status :: 4 - Beta",
|
|
10
|
+
"Intended Audience :: Developers",
|
|
11
|
+
"Intended Audience :: Education",
|
|
12
|
+
"Intended Audience :: Science/Research",
|
|
13
|
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
14
|
+
]
|
|
8
15
|
|
|
9
16
|
[tool.poetry.urls]
|
|
10
17
|
homepage = "https://github.com/Linkdlab/funcnodes_core"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|