helioy 0.0.0

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.
package/Cargo.toml ADDED
@@ -0,0 +1,9 @@
1
+ [package]
2
+ name = "helioy"
3
+ version = "0.0.0"
4
+ edition = "2021"
5
+ description = "Helioy"
6
+ license = "MIT"
7
+ repository = "https://github.com/srobinson/helioy"
8
+
9
+ [lib]
package/helioy.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("helioy");
package/helioy.py ADDED
@@ -0,0 +1 @@
1
+ print("helioy")
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "helioy",
3
+ "version": "0.0.0",
4
+ "description": "Helioy CLI",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "MIT",
12
+ "type": "commonjs",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/srobinson/helioy"
16
+ },
17
+ "bin": {
18
+ "helioy": "./helioy.js"
19
+ }
20
+ }
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ cd "$(dirname "$0")"
4
+ cargo publish
package/publish-npm.sh ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ cd "$(dirname "$0")"
4
+ npm login
5
+ npm publish --access public
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ cd "$(dirname "$0")"
4
+ python3 -m pip install --quiet --upgrade build twine
5
+ python3 -m build
6
+ python3 -m twine upload dist/*
package/pyproject.toml ADDED
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "helioy"
7
+ version = "0.0.0"
8
+ description = "Helioy"
9
+ requires-python = ">=3.8"
10
+ license = { text = "MIT" }
11
+
12
+ [project.urls]
13
+ Repository = "https://github.com/srobinson/helioy"
14
+
15
+ [tool.setuptools]
16
+ py-modules = ["helioy"]
package/src/lib.rs ADDED
@@ -0,0 +1 @@
1
+ //! helioy