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.
Files changed (32) hide show
  1. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/PKG-INFO +8 -3
  2. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/__init__.py +1 -1
  3. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/pyproject.toml +9 -2
  4. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/LICENSE +0 -0
  5. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/README.md +0 -0
  6. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/_logging.py +0 -0
  7. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/_setup.py +0 -0
  8. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/config.py +0 -0
  9. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/data.py +0 -0
  10. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/decorator/__init__.py +0 -0
  11. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/eventmanager.py +0 -0
  12. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/exceptions.py +0 -0
  13. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/graph.py +0 -0
  14. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/io.py +0 -0
  15. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/__init__.py +0 -0
  16. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/lib.py +0 -0
  17. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/libfinder.py +0 -0
  18. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/lib/libparser.py +0 -0
  19. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/node.py +0 -0
  20. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/nodemaker.py +0 -0
  21. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/nodespace.py +0 -0
  22. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/triggerstack.py +0 -0
  23. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/__init__.py +0 -0
  24. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/data.py +0 -0
  25. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/functions.py +0 -0
  26. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/nodeutils.py +0 -0
  27. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/plugins.py +0 -0
  28. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/plugins_types.py +0 -0
  29. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/saving.py +0 -0
  30. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/serialization.py +0 -0
  31. {funcnodes_core-0.3 → funcnodes_core-0.3.2}/funcnodes_core/utils/special_types.py +0 -0
  32. {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: AGPLv3
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: License :: Other/Proprietary License
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,4 +1,4 @@
1
- __version__ = "0.3"
1
+ __version__ = "0.3.2"
2
2
 
3
3
  from .io import (
4
4
  NodeInput,
@@ -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 = "AGPLv3"
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