pybun 1.1.25a1__pha1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.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 ADDED
Binary file
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.1
2
+ Name: pybun
3
+ Version: 1.1.25.alpha1
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
+ Requires-Python ~=3.9
12
+
13
+ Bun PyPI distribution
14
+ =====================
15
+
16
+ [Bun](https://bun.sh/) is an all-in-one toolkit for JavaScript and TypeScript apps.
17
+ 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.
18
+
19
+
20
+ Usage
21
+ -----
22
+
23
+ To run the Bun CLI from the command line, use:
24
+
25
+ ```shell
26
+ python -m pybun
27
+ ```
28
+
29
+ To run the Bun CLI from a Python program, use `sys.executable` to locate the Python binary to invoke. For example:
30
+
31
+ ```python
32
+ import sys, subprocess
33
+
34
+ subprocess.call([sys.executable, "-m", "pybun"])
35
+ ```
36
+
37
+ License
38
+ -------
39
+
40
+ The [Bun license](https://bun.sh/docs/project/licensing).
@@ -0,0 +1,6 @@
1
+ pybun-1.1.25.alpha1.dist-info/METADATA,sha256=_bKQmoCnReMZCOnineZHgwhXt4z-_t_Xu6yr_FUKGLo,1080
2
+ pybun-1.1.25.alpha1.dist-info/WHEEL,sha256=BRYN2psLh3DqZak9M86-n8h8_OhZ_slIqA3aNc-CHxQ,155
3
+ pybun/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ pybun/__main__.py,sha256=R0P6GBxQj-zhmiCcUZFCBi2BDjBxuAlHto_-l-Dz08c,210
5
+ pybun/bun,sha256=Vc2wuJ0SAhNzVLZU9Gq0pj4_2lVXx0oXQjrYxmAPI2M,93231464
6
+ pybun-1.1.25.alpha1.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-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64