string-schema 0.1.4__tar.gz → 0.1.5__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.
- {string_schema-0.1.4/string_schema.egg-info → string_schema-0.1.5}/PKG-INFO +1 -1
- {string_schema-0.1.4 → string_schema-0.1.5}/pyproject.toml +7 -1
- {string_schema-0.1.4 → string_schema-0.1.5}/setup.py +1 -1
- {string_schema-0.1.4 → string_schema-0.1.5/string_schema.egg-info}/PKG-INFO +1 -1
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema.egg-info/SOURCES.txt +19 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/LICENSE +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/MANIFEST.in +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/README.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/README.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/advanced-usage.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/api-reference.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/examples.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/faq.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/getting-started.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/pydantic-utilities.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/string-syntax.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/docs/troubleshooting.md +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/examples/demo.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/examples/pydantic_utility_demo.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/setup.cfg +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/__init__.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/core/__init__.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/core/builders.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/core/fields.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/core/validators.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/examples/__init__.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/examples/presets.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/examples/recipes.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/integrations/__init__.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/integrations/json_schema.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/integrations/openapi.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/integrations/pydantic.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/integrations/reverse.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/parsing/__init__.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/parsing/optimizer.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/parsing/string_parser.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/parsing/syntax.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/py.typed +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema/utilities.py +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema.egg-info/dependency_links.txt +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema.egg-info/requires.txt +0 -0
- {string_schema-0.1.4 → string_schema-0.1.5}/string_schema.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "string-schema"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.5"
|
|
8
8
|
description = "A simple, LLM-friendly schema definition library for converting string syntax to structured schemas"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -64,6 +64,12 @@ include = ["string_schema*"]
|
|
|
64
64
|
[tool.setuptools.package-data]
|
|
65
65
|
string_schema = ["py.typed"]
|
|
66
66
|
|
|
67
|
+
[tool.setuptools]
|
|
68
|
+
include-package-data = true
|
|
69
|
+
|
|
70
|
+
[tool.setuptools.package-dir]
|
|
71
|
+
"" = "."
|
|
72
|
+
|
|
67
73
|
[tool.black]
|
|
68
74
|
line-length = 100
|
|
69
75
|
target-version = ['py311', 'py312', 'py313']
|
|
@@ -9,7 +9,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name="string-schema",
|
|
12
|
-
version="0.1.
|
|
12
|
+
version="0.1.5",
|
|
13
13
|
author="Michael Chen",
|
|
14
14
|
author_email="xychen@msn.com",
|
|
15
15
|
description="A simple, LLM-friendly schema definition library for converting string syntax to structured schemas",
|
|
@@ -3,6 +3,25 @@ MANIFEST.in
|
|
|
3
3
|
README.md
|
|
4
4
|
pyproject.toml
|
|
5
5
|
setup.py
|
|
6
|
+
./string_schema/__init__.py
|
|
7
|
+
./string_schema/py.typed
|
|
8
|
+
./string_schema/utilities.py
|
|
9
|
+
./string_schema/core/__init__.py
|
|
10
|
+
./string_schema/core/builders.py
|
|
11
|
+
./string_schema/core/fields.py
|
|
12
|
+
./string_schema/core/validators.py
|
|
13
|
+
./string_schema/examples/__init__.py
|
|
14
|
+
./string_schema/examples/presets.py
|
|
15
|
+
./string_schema/examples/recipes.py
|
|
16
|
+
./string_schema/integrations/__init__.py
|
|
17
|
+
./string_schema/integrations/json_schema.py
|
|
18
|
+
./string_schema/integrations/openapi.py
|
|
19
|
+
./string_schema/integrations/pydantic.py
|
|
20
|
+
./string_schema/integrations/reverse.py
|
|
21
|
+
./string_schema/parsing/__init__.py
|
|
22
|
+
./string_schema/parsing/optimizer.py
|
|
23
|
+
./string_schema/parsing/string_parser.py
|
|
24
|
+
./string_schema/parsing/syntax.py
|
|
6
25
|
docs/README.md
|
|
7
26
|
docs/advanced-usage.md
|
|
8
27
|
docs/api-reference.md
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|