pybun 1.1.25a3__pha3-py3-none-win_amd64.whl

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.

Potentially problematic release.


This version of pybun might be problematic. Click here for more details.

pybun/__init__.py ADDED
@@ -0,0 +1 @@
1
+
pybun/__main__.py ADDED
@@ -0,0 +1,11 @@
1
+ import os
2
+ import sys
3
+
4
+ argv = [os.path.join(os.path.dirname(__file__), "bun"), *sys.argv[1:]]
5
+
6
+ if os.name == "posix":
7
+ os.execv(argv[0], argv)
8
+ else:
9
+ import subprocess
10
+
11
+ sys.exit(subprocess.call(argv))
pybun/bun.exe ADDED
Binary file
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.3
2
+ Name: pybun
3
+ Version: 1.1.25.alpha3
4
+ Summary: Bun is an all-in-one toolkit for JavaScript and TypeScript apps.
5
+ Description-Content-Type: text/markdown
6
+ License: MIT
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Project-URL: Homepage, https://bun.sh/
9
+ Project-URL: Source Code, https://github.com/oven-sh/bun
10
+ Project-URL: Bug Tracker, https://github.com/oven-sh/bun/issues
11
+ Project-URL: Changelog, https://bun.sh/blog/bun-v1.1.25
12
+ Project-URL: Documentation, https://bun.sh/docs
13
+ Requires-Python: ~=3.9
14
+
15
+ Bun PyPI distribution
16
+ =====================
17
+
18
+ [Bun](https://bun.sh/) is an all-in-one toolkit for JavaScript and TypeScript apps.
19
+ The [pybun](https://pypi.org/project/pybun/) Python package redistributes the Bun CLI executable so that it can be used as a dependency in your Python projects.
20
+
21
+
22
+ Usage
23
+ -----
24
+
25
+ To run the Bun CLI from the command line, use:
26
+
27
+ ```shell
28
+ python -m pybun
29
+ ```
30
+
31
+ To run the Bun CLI from a Python program, use `sys.executable` to locate the Python binary to invoke. For example:
32
+
33
+ ```python
34
+ import sys, subprocess
35
+
36
+ subprocess.call([sys.executable, "-m", "pybun"])
37
+ ```
38
+
39
+ License
40
+ -------
41
+
42
+ The [Bun license](https://bun.sh/docs/project/licensing).
@@ -0,0 +1,6 @@
1
+ pybun-1.1.25.alpha3.dist-info/METADATA,sha256=py3RNs3U_UJmOVYlLrQ5CJ094jHKI4SAs0SDXJrMu_g,1185
2
+ pybun-1.1.25.alpha3.dist-info/WHEEL,sha256=VGMIrdxpTeWabhPwYFuMARhsRDEFodNdSp-x3O2yDB0,101
3
+ pybun/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ pybun/__main__.py,sha256=R0P6GBxQj-zhmiCcUZFCBi2BDjBxuAlHto_-l-Dz08c,210
5
+ pybun/bun.exe,sha256=hk-SmmTaq3YSlHwFd9Islii6RFJr5Z_gcN6uacxqnR0,105848832
6
+ pybun-1.1.25.alpha3.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: pybun src/make_wheels.py
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64