yamlscript 0.1.63__tar.gz → 0.1.65__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.1.63/lib/yamlscript.egg-info → yamlscript-0.1.65}/PKG-INFO +1 -1
- {yamlscript-0.1.63 → yamlscript-0.1.65}/ReadMe.md +8 -5
- {yamlscript-0.1.63 → yamlscript-0.1.65}/lib/yamlscript/__init__.py +2 -2
- {yamlscript-0.1.63 → yamlscript-0.1.65/lib/yamlscript.egg-info}/PKG-INFO +1 -1
- {yamlscript-0.1.63 → yamlscript-0.1.65}/setup.py +1 -1
- {yamlscript-0.1.63 → yamlscript-0.1.65}/.long_description.md +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/MANIFEST.in +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/lib/yamlscript.egg-info/SOURCES.txt +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/lib/yamlscript.egg-info/dependency_links.txt +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/lib/yamlscript.egg-info/requires.txt +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/lib/yamlscript.egg-info/top_level.txt +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/setup.cfg +0 -0
- {yamlscript-0.1.63 → yamlscript-0.1.65}/test/test.py +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<!-- DO NOT EDIT — THIS FILE WAS GENERATED -->
|
|
2
|
+
|
|
1
3
|
YAMLScript
|
|
2
4
|
==========
|
|
3
5
|
|
|
@@ -20,13 +22,13 @@ YAMLScript is a functional programming language with a stylized YAML syntax.
|
|
|
20
22
|
|
|
21
23
|
YAMLScript can be used for:
|
|
22
24
|
|
|
25
|
+
* Enhancing ordinary YAML files with functional operations
|
|
26
|
+
* Import parts of other YAML files to any node
|
|
27
|
+
* String interpolation including function calls
|
|
28
|
+
* Data transforms including ones defined by you
|
|
23
29
|
* Writing new programs and applications
|
|
24
30
|
* Run with `ys file.ys`
|
|
25
31
|
* Or compile to binary executable with `ys -C file.ys`
|
|
26
|
-
* Enhancing ordinary YAML files with new functional magics
|
|
27
|
-
* Import parts of other YAML files to any node
|
|
28
|
-
* String interpolation including function calls
|
|
29
|
-
* Any other functionality you can dream up!
|
|
30
32
|
* Writing reusable shared libraries
|
|
31
33
|
* High level code instead of C
|
|
32
34
|
* Bindable to almost any programming language
|
|
@@ -47,7 +49,7 @@ YAMLScript is compiled to a native shared library (`libyamlscript.so`) that can
|
|
|
47
49
|
be used by any programming language that can load shared libraries.
|
|
48
50
|
|
|
49
51
|
To see the Clojure code that YAMLScript compiles to, you can use the YAMLScript
|
|
50
|
-
|
|
52
|
+
CLI binary, `ys`, to run:
|
|
51
53
|
|
|
52
54
|
```text
|
|
53
55
|
$ ys --compile file.ys
|
|
@@ -127,6 +129,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info.
|
|
|
127
129
|
|
|
128
130
|
## Authors
|
|
129
131
|
|
|
132
|
+
|
|
130
133
|
* [Ingy döt Net](https://github.com/ingydotnet)
|
|
131
134
|
|
|
132
135
|
|
|
@@ -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 libyamlscript.
|
|
19
|
-
yamlscript_version = '0.1.
|
|
19
|
+
yamlscript_version = '0.1.65'
|
|
20
20
|
|
|
21
21
|
import os, sys
|
|
22
22
|
import ctypes
|
|
@@ -40,7 +40,7 @@ def find_libyamlscript_path():
|
|
|
40
40
|
"Unsupported platform '%s' for yamlscript." % sys.platform)
|
|
41
41
|
|
|
42
42
|
# We currently bind to an exact version of libyamlscript.
|
|
43
|
-
# eg 'libyamlscript.so.0.1.
|
|
43
|
+
# eg 'libyamlscript.so.0.1.65'
|
|
44
44
|
libyamlscript_name = \
|
|
45
45
|
"libyamlscript.%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
|