swarmauri_typing 0.10.0.dev6__tar.gz → 0.10.1.dev3__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.
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/PKG-INFO +17 -13
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/README.md +9 -11
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/pyproject.toml +23 -7
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/LICENSE +0 -0
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/swarmauri_typing/Intersection.py +0 -0
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/swarmauri_typing/UnionFactory.py +0 -0
- {swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/swarmauri_typing/__init__.py +0 -0
|
@@ -1,35 +1,39 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: swarmauri_typing
|
|
3
|
-
Version: 0.10.
|
|
3
|
+
Version: 0.10.1.dev3
|
|
4
4
|
Summary: This repository includes typing used in the Swarmauri framework.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
7
|
+
Keywords: swarmauri,typing,dynamic-json-schema,discriminated-unions,pydantic,schema-first,serialization,yaml,toml,plugin-factory,typed-components
|
|
7
8
|
Author: Jacob Stewart
|
|
8
9
|
Author-email: jacob@swarmauri.com
|
|
9
|
-
Requires-Python: >=3.10,<3.
|
|
10
|
+
Requires-Python: >=3.10,<3.15
|
|
10
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
20
|
Description-Content-Type: text/markdown
|
|
15
21
|
|
|
16
|
-

|
|
17
23
|
|
|
18
24
|
<p align="center">
|
|
19
|
-
<a href="https://
|
|
20
|
-
<img src="https://
|
|
25
|
+
<a href="https://pepy.tech/project/swarmauri_typing/">
|
|
26
|
+
<img src="https://static.pepy.tech/badge/swarmauri_typing/month" alt="PyPI - Downloads"/></a>
|
|
21
27
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/typing/">
|
|
22
28
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/typing.svg"/></a>
|
|
23
|
-
<a href="https://pypi.org/project/
|
|
24
|
-
<img src="https://img.shields.io/
|
|
25
|
-
<a href="https://pypi.org/project/
|
|
26
|
-
<img src="https://img.shields.io/pypi/l/
|
|
27
|
-
<a href="https://pypi.org/project/
|
|
28
|
-
<img src="https://img.shields.io/pypi/v/
|
|
29
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
30
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
31
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
32
|
+
<img src="https://img.shields.io/pypi/l/swarmauri_typing" alt="PyPI - License"/></a>
|
|
33
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
34
|
+
<img src="https://img.shields.io/pypi/v/swarmauri_typing?label=swarmauri_typing&color=green" alt="PyPI - swarmauri_typing"/></a>
|
|
29
35
|
</p>
|
|
30
36
|
|
|
31
|
-
---
|
|
32
|
-
|
|
33
37
|
# Swarmauri Typing
|
|
34
38
|
|
|
35
39
|
The Swarmauri Typing Library provides advanced type utilities for Python, enabling more expressive and flexible type annotations. It includes tools for creating intersection and union types dynamically.
|
|
@@ -1,20 +1,18 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<a href="https://
|
|
5
|
-
<img src="https://
|
|
4
|
+
<a href="https://pepy.tech/project/swarmauri_typing/">
|
|
5
|
+
<img src="https://static.pepy.tech/badge/swarmauri_typing/month" alt="PyPI - Downloads"/></a>
|
|
6
6
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/typing/">
|
|
7
7
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/typing.svg"/></a>
|
|
8
|
-
<a href="https://pypi.org/project/
|
|
9
|
-
<img src="https://img.shields.io/
|
|
10
|
-
<a href="https://pypi.org/project/
|
|
11
|
-
<img src="https://img.shields.io/pypi/l/
|
|
12
|
-
<a href="https://pypi.org/project/
|
|
13
|
-
<img src="https://img.shields.io/pypi/v/
|
|
8
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
9
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
10
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
11
|
+
<img src="https://img.shields.io/pypi/l/swarmauri_typing" alt="PyPI - License"/></a>
|
|
12
|
+
<a href="https://pypi.org/project/swarmauri_typing/">
|
|
13
|
+
<img src="https://img.shields.io/pypi/v/swarmauri_typing?label=swarmauri_typing&color=green" alt="PyPI - swarmauri_typing"/></a>
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
|
-
---
|
|
17
|
-
|
|
18
16
|
# Swarmauri Typing
|
|
19
17
|
|
|
20
18
|
The Swarmauri Typing Library provides advanced type utilities for Python, enabling more expressive and flexible type annotations. It includes tools for creating intersection and union types dynamically.
|
|
@@ -1,21 +1,37 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "swarmauri_typing"
|
|
3
|
-
version = "0.10.
|
|
3
|
+
version = "0.10.1.dev3"
|
|
4
4
|
|
|
5
5
|
description = "This repository includes typing used in the Swarmauri framework."
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
keywords = [
|
|
7
|
+
"swarmauri",
|
|
8
|
+
"typing",
|
|
9
|
+
"dynamic-json-schema",
|
|
10
|
+
"discriminated-unions",
|
|
11
|
+
"pydantic",
|
|
12
|
+
"schema-first",
|
|
13
|
+
"serialization",
|
|
14
|
+
"yaml",
|
|
15
|
+
"toml",
|
|
16
|
+
"plugin-factory",
|
|
17
|
+
"typed-components",
|
|
18
|
+
]
|
|
19
|
+
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
9
20
|
license = "Apache-2.0"
|
|
10
21
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
11
22
|
repository = "http://github.com/swarmauri/swarmauri-sdk"
|
|
12
23
|
classifiers = [
|
|
13
24
|
"License :: OSI Approved :: Apache Software License",
|
|
25
|
+
"Programming Language :: Python",
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
14
28
|
"Programming Language :: Python :: 3.10",
|
|
15
29
|
"Programming Language :: Python :: 3.11",
|
|
16
|
-
"Programming Language :: Python :: 3.12"
|
|
30
|
+
"Programming Language :: Python :: 3.12",
|
|
31
|
+
"Programming Language :: Python :: 3.13",
|
|
32
|
+
"Programming Language :: Python :: 3.14",
|
|
17
33
|
]
|
|
18
|
-
requires-python = ">=3.10,<3.
|
|
34
|
+
requires-python = ">=3.10,<3.15"
|
|
19
35
|
|
|
20
36
|
[tool.uv.sources]
|
|
21
37
|
swarmauri_core = { workspace = true }
|
|
@@ -57,4 +73,4 @@ asyncio_default_fixture_loop_scope = "function"
|
|
|
57
73
|
|
|
58
74
|
[build-system]
|
|
59
75
|
requires = ["poetry-core>=1.0.0"]
|
|
60
|
-
build-backend = "poetry.core.masonry.api"
|
|
76
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
{swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/swarmauri_typing/Intersection.py
RENAMED
|
File without changes
|
{swarmauri_typing-0.10.0.dev6 → swarmauri_typing-0.10.1.dev3}/swarmauri_typing/UnionFactory.py
RENAMED
|
File without changes
|
|
File without changes
|