string-schema 0.1.1__tar.gz → 0.1.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 (26) hide show
  1. {string_schema-0.1.1/string_schema.egg-info → string_schema-0.1.2}/PKG-INFO +2 -3
  2. {string_schema-0.1.1 → string_schema-0.1.2}/pyproject.toml +2 -3
  3. {string_schema-0.1.1 → string_schema-0.1.2}/setup.py +1 -2
  4. {string_schema-0.1.1 → string_schema-0.1.2/string_schema.egg-info}/PKG-INFO +2 -3
  5. {string_schema-0.1.1 → string_schema-0.1.2}/LICENSE +0 -0
  6. {string_schema-0.1.1 → string_schema-0.1.2}/MANIFEST.in +0 -0
  7. {string_schema-0.1.1 → string_schema-0.1.2}/README.md +0 -0
  8. {string_schema-0.1.1 → string_schema-0.1.2}/docs/README.md +0 -0
  9. {string_schema-0.1.1 → string_schema-0.1.2}/docs/advanced-usage.md +0 -0
  10. {string_schema-0.1.1 → string_schema-0.1.2}/docs/api-reference.md +0 -0
  11. {string_schema-0.1.1 → string_schema-0.1.2}/docs/examples.md +0 -0
  12. {string_schema-0.1.1 → string_schema-0.1.2}/docs/faq.md +0 -0
  13. {string_schema-0.1.1 → string_schema-0.1.2}/docs/getting-started.md +0 -0
  14. {string_schema-0.1.1 → string_schema-0.1.2}/docs/pydantic-utilities.md +0 -0
  15. {string_schema-0.1.1 → string_schema-0.1.2}/docs/string-syntax.md +0 -0
  16. {string_schema-0.1.1 → string_schema-0.1.2}/docs/troubleshooting.md +0 -0
  17. {string_schema-0.1.1 → string_schema-0.1.2}/examples/demo.py +0 -0
  18. {string_schema-0.1.1 → string_schema-0.1.2}/examples/pydantic_utility_demo.py +0 -0
  19. {string_schema-0.1.1 → string_schema-0.1.2}/setup.cfg +0 -0
  20. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema/__init__.py +0 -0
  21. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema/py.typed +0 -0
  22. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema/utilities.py +0 -0
  23. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema.egg-info/SOURCES.txt +0 -0
  24. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema.egg-info/dependency_links.txt +0 -0
  25. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema.egg-info/requires.txt +0 -0
  26. {string_schema-0.1.1 → string_schema-0.1.2}/string_schema.egg-info/top_level.txt +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: string-schema
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A simple, LLM-friendly schema definition library for converting string syntax to structured schemas
5
5
  Home-page: https://github.com/xychenmsn/string-schema
6
6
  Author: Michael Chen
7
7
  Author-email: Michael Chen <xychen@msn.com>
8
8
  Maintainer-email: Michael Chen <xychen@msn.com>
9
- License: MIT
9
+ License-Expression: MIT
10
10
  Project-URL: Homepage, https://github.com/xychenmsn/string-schema
11
11
  Project-URL: Documentation, https://github.com/xychenmsn/string-schema#readme
12
12
  Project-URL: Repository, https://github.com/xychenmsn/string-schema
@@ -15,7 +15,6 @@ Project-URL: Changelog, https://github.com/xychenmsn/string-schema/releases
15
15
  Keywords: schema,validation,json,llm,ai,data-extraction,pydantic
16
16
  Classifier: Development Status :: 3 - Alpha
17
17
  Classifier: Intended Audience :: Developers
18
- Classifier: License :: OSI Approved :: MIT License
19
18
  Classifier: Operating System :: OS Independent
20
19
  Classifier: Programming Language :: Python :: 3
21
20
  Classifier: Programming Language :: Python :: 3.11
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "string-schema"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A simple, LLM-friendly schema definition library for converting string syntax to structured schemas"
9
9
  readme = "README.md"
10
- license = {text = "MIT"}
10
+ license = "MIT"
11
11
  authors = [
12
12
  {name = "Michael Chen", email = "xychen@msn.com"}
13
13
  ]
@@ -18,7 +18,6 @@ keywords = ["schema", "validation", "json", "llm", "ai", "data-extraction", "pyd
18
18
  classifiers = [
19
19
  "Development Status :: 3 - Alpha",
20
20
  "Intended Audience :: Developers",
21
- "License :: OSI Approved :: MIT License",
22
21
  "Operating System :: OS Independent",
23
22
  "Programming Language :: Python :: 3",
24
23
  "Programming Language :: Python :: 3.11",
@@ -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.1",
12
+ version="0.1.2",
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",
@@ -20,7 +20,6 @@ setup(
20
20
  classifiers=[
21
21
  "Development Status :: 3 - Alpha",
22
22
  "Intended Audience :: Developers",
23
- "License :: OSI Approved :: MIT License",
24
23
  "Operating System :: OS Independent",
25
24
  "Programming Language :: Python :: 3",
26
25
  "Programming Language :: Python :: 3.11",
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: string-schema
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A simple, LLM-friendly schema definition library for converting string syntax to structured schemas
5
5
  Home-page: https://github.com/xychenmsn/string-schema
6
6
  Author: Michael Chen
7
7
  Author-email: Michael Chen <xychen@msn.com>
8
8
  Maintainer-email: Michael Chen <xychen@msn.com>
9
- License: MIT
9
+ License-Expression: MIT
10
10
  Project-URL: Homepage, https://github.com/xychenmsn/string-schema
11
11
  Project-URL: Documentation, https://github.com/xychenmsn/string-schema#readme
12
12
  Project-URL: Repository, https://github.com/xychenmsn/string-schema
@@ -15,7 +15,6 @@ Project-URL: Changelog, https://github.com/xychenmsn/string-schema/releases
15
15
  Keywords: schema,validation,json,llm,ai,data-extraction,pydantic
16
16
  Classifier: Development Status :: 3 - Alpha
17
17
  Classifier: Intended Audience :: Developers
18
- Classifier: License :: OSI Approved :: MIT License
19
18
  Classifier: Operating System :: OS Independent
20
19
  Classifier: Programming Language :: Python :: 3
21
20
  Classifier: Programming Language :: Python :: 3.11
File without changes
File without changes
File without changes
File without changes
File without changes