pybun 1.1.25a3__pha3-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 +1 -0
- pybun/__main__.py +11 -0
- pybun/bun +0 -0
- pybun-1.1.25.alpha3.dist-info/METADATA +42 -0
- pybun-1.1.25.alpha3.dist-info/RECORD +6 -0
- pybun-1.1.25.alpha3.dist-info/WHEEL +4 -0
pybun/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
pybun/__main__.py
ADDED
pybun/bun
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=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.alpha3.dist-info/RECORD,,
|