yamlscript 0.2.8__tar.gz → 0.2.12__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.
- {yamlscript-0.2.8/lib/yamlscript.egg-info → yamlscript-0.2.12}/PKG-INFO +1 -1
- {yamlscript-0.2.8 → yamlscript-0.2.12}/ReadMe.md +10 -10
- {yamlscript-0.2.8 → yamlscript-0.2.12}/lib/yamlscript/__init__.py +2 -2
- {yamlscript-0.2.8 → yamlscript-0.2.12/lib/yamlscript.egg-info}/PKG-INFO +1 -1
- {yamlscript-0.2.8 → yamlscript-0.2.12}/setup.py +1 -1
- {yamlscript-0.2.8 → yamlscript-0.2.12}/.long_description.md +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/MANIFEST.in +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/lib/yamlscript.egg-info/SOURCES.txt +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/lib/yamlscript.egg-info/dependency_links.txt +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/lib/yamlscript.egg-info/requires.txt +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/lib/yamlscript.egg-info/top_level.txt +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/setup.cfg +0 -0
- {yamlscript-0.2.8 → yamlscript-0.2.12}/test/test.py +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- DO NOT EDIT
|
|
1
|
+
<!-- DO NOT EDIT ? THIS FILE WAS GENERATED -->
|
|
2
2
|
|
|
3
3
|
YAMLScript
|
|
4
4
|
==========
|
|
@@ -75,13 +75,13 @@ It's perfect for:
|
|
|
75
75
|
|
|
76
76
|
## Key Features
|
|
77
77
|
|
|
78
|
-
* **Drop-in YAML replacement**
|
|
79
|
-
* **Variables & functions**
|
|
80
|
-
* **External data loading**
|
|
81
|
-
* **Conditional logic**
|
|
82
|
-
* **Data transformation**
|
|
83
|
-
* **String interpolation**
|
|
84
|
-
* **No JVM required**
|
|
78
|
+
* **Drop-in YAML replacement** ? Works with your existing YAML files
|
|
79
|
+
* **Variables & functions** ? Define and reuse values throughout your files
|
|
80
|
+
* **External data loading** ? Import JSON, YAML, or data from URLs
|
|
81
|
+
* **Conditional logic** ? Use if/then/else and pattern matching
|
|
82
|
+
* **Data transformation** ? Built-ins for transforming & manipulating data
|
|
83
|
+
* **String interpolation** ? Embed expressions/variables directly in strings
|
|
84
|
+
* **No JVM required** ? Runs as a native library despite compiling to Clojure
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
## How It Works
|
|
@@ -167,11 +167,11 @@ See <https://yamlscript.org/doc/install/> for more info.
|
|
|
167
167
|
|
|
168
168
|
## Authors
|
|
169
169
|
|
|
170
|
-
* [Ingy
|
|
170
|
+
* [Ingy d?t Net](https://github.com/ingydotnet)
|
|
171
171
|
|
|
172
172
|
## License & Copyright
|
|
173
173
|
|
|
174
|
-
Copyright 2022-2025 Ingy
|
|
174
|
+
Copyright 2022-2025 Ingy d?t Net <ingy@ingy.net>
|
|
175
175
|
|
|
176
176
|
This project is licensed under the terms of the `MIT` license.
|
|
177
177
|
See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for more
|
|
@@ -16,7 +16,7 @@ object that the YAMLScript code evaluates to.
|
|
|
16
16
|
# This value is automatically updated by 'make bump'.
|
|
17
17
|
# The version number is used to find the correct shared library file.
|
|
18
18
|
# We currently only support binding to an exact version of libys.
|
|
19
|
-
yamlscript_version = '0.2.
|
|
19
|
+
yamlscript_version = '0.2.12'
|
|
20
20
|
|
|
21
21
|
import os, sys
|
|
22
22
|
import ctypes
|
|
@@ -40,7 +40,7 @@ def find_libys_path():
|
|
|
40
40
|
"Unsupported platform '%s' for yamlscript." % sys.platform)
|
|
41
41
|
|
|
42
42
|
# We currently bind to an exact version of libys.
|
|
43
|
-
# eg 'libys.so.0.2.
|
|
43
|
+
# eg 'libys.so.0.2.12'
|
|
44
44
|
libys_name = \
|
|
45
45
|
"libys.%s.%s" % (so, yamlscript_version)
|
|
46
46
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|