deno 2.5.0__tar.gz → 2.5.1__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.
Potentially problematic release.
This version of deno might be problematic. Click here for more details.
- deno-2.5.1/LICENSE +25 -0
- deno-2.5.1/PKG-INFO +61 -0
- deno-2.5.1/README.md +51 -0
- {deno-2.5.0 → deno-2.5.1}/pyproject.toml +9 -5
- {deno-2.5.0 → deno-2.5.1}/uv.lock +1 -1
- deno-2.5.0/PKG-INFO +0 -27
- deno-2.5.0/README.md +0 -21
- {deno-2.5.0 → deno-2.5.1}/.github/workflows/check-release.yml +0 -0
- {deno-2.5.0 → deno-2.5.1}/.github/workflows/release.yml +0 -0
- {deno-2.5.0 → deno-2.5.1}/.gitignore +0 -0
- {deno-2.5.0 → deno-2.5.1}/scripts/build.sh +0 -0
- {deno-2.5.0 → deno-2.5.1}/scripts/hatch_build.py +0 -0
- {deno-2.5.0 → deno-2.5.1}/src/deno/__init__.py +0 -0
- {deno-2.5.0 → deno-2.5.1}/src/deno/__main__.py +0 -0
- {deno-2.5.0 → deno-2.5.1}/src/deno/_find_deno.py +0 -0
deno-2.5.1/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
This project redistributes Deno binaries for Python packaging.
|
|
2
|
+
The original Deno project is licensed under the MIT License below:
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
MIT License
|
|
7
|
+
|
|
8
|
+
Copyright 2018-2025 the Deno authors
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
11
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
12
|
+
the Software without restriction, including without limitation the rights to
|
|
13
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
14
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
15
|
+
subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
22
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
23
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
24
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
25
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
deno-2.5.1/PKG-INFO
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deno
|
|
3
|
+
Version: 2.5.1
|
|
4
|
+
Summary: Python redistribution of Deno binaries
|
|
5
|
+
Author-email: Trevor Manz <trevor.j.manz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Deno
|
|
12
|
+
|
|
13
|
+
Distribution of [Deno](https://deno.com/) for PyPI.
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install deno
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
uv add deno
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
### Command Line
|
|
28
|
+
|
|
29
|
+
You can invoke Deno CLI directly via `uv` or `pipx`:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
uvx deno --version
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pipx deno --version
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Python API
|
|
40
|
+
|
|
41
|
+
```python
|
|
42
|
+
import deno
|
|
43
|
+
|
|
44
|
+
# Get the path to the Deno executable
|
|
45
|
+
deno_bin = deno.find_deno_bin()
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Platform Support
|
|
49
|
+
|
|
50
|
+
This package provides Deno binaries for:
|
|
51
|
+
- macOS (`x86_64`, `arm64`)
|
|
52
|
+
- Linux (`x86_64`, `arm64`)
|
|
53
|
+
- Windows (`x86_64`)
|
|
54
|
+
|
|
55
|
+
The appropriate binary for your platform will be installed automatically.
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
MIT
|
|
60
|
+
|
|
61
|
+
This repository redistributes official Deno binaries to make them easily installable via pip/uv/etc.
|
deno-2.5.1/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Deno
|
|
2
|
+
|
|
3
|
+
Distribution of [Deno](https://deno.com/) for PyPI.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install deno
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
uv add deno
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
### Command Line
|
|
18
|
+
|
|
19
|
+
You can invoke Deno CLI directly via `uv` or `pipx`:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
uvx deno --version
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pipx deno --version
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Python API
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
import deno
|
|
33
|
+
|
|
34
|
+
# Get the path to the Deno executable
|
|
35
|
+
deno_bin = deno.find_deno_bin()
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Platform Support
|
|
39
|
+
|
|
40
|
+
This package provides Deno binaries for:
|
|
41
|
+
- macOS (`x86_64`, `arm64`)
|
|
42
|
+
- Linux (`x86_64`, `arm64`)
|
|
43
|
+
- Windows (`x86_64`)
|
|
44
|
+
|
|
45
|
+
The appropriate binary for your platform will be installed automatically.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT
|
|
50
|
+
|
|
51
|
+
This repository redistributes official Deno binaries to make them easily installable via pip/uv/etc.
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
1
|
[project]
|
|
6
2
|
name = "deno"
|
|
7
|
-
version = "2.5.
|
|
3
|
+
version = "2.5.1"
|
|
4
|
+
description = "Python redistribution of Deno binaries"
|
|
8
5
|
readme = "README.md"
|
|
9
6
|
requires-python = ">=3.10"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
license-files = ["LICENSE"]
|
|
9
|
+
authors = [{ name = "Trevor Manz", email = "trevor.j.manz@gmail.com" }]
|
|
10
|
+
|
|
11
|
+
[build-system]
|
|
12
|
+
requires = ["hatchling"]
|
|
13
|
+
build-backend = "hatchling.build"
|
|
10
14
|
|
|
11
15
|
[tool.hatch.build]
|
|
12
16
|
artifacts = ["scripts/hatch_build.py"]
|
deno-2.5.0/PKG-INFO
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: deno
|
|
3
|
-
Version: 2.5.0
|
|
4
|
-
Requires-Python: >=3.10
|
|
5
|
-
Description-Content-Type: text/markdown
|
|
6
|
-
|
|
7
|
-
# denop
|
|
8
|
-
|
|
9
|
-
Distribution of [Deno](https://deno.com/) for PyPI.
|
|
10
|
-
|
|
11
|
-
```sh
|
|
12
|
-
scripts/build.sh # build all the distributions under ./dist
|
|
13
|
-
uvx --from dist/deno-2.3.5-py3-none-macosx_11_0_arm64.whl deno --version
|
|
14
|
-
# deno 2.3.5 (stable, release, aarch64-apple-darwin)
|
|
15
|
-
# v8 13.7.152.6-rusty
|
|
16
|
-
# typescript 5.8.3
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
```py
|
|
20
|
-
$ uv run --with dist/deno-2.3.5-py3-none-macosx_11_0_arm64.whl python
|
|
21
|
-
# Python 3.13.3 (main, May 30 2025, 05:45:55) [Clang 20.1.4 ] on darwin
|
|
22
|
-
# Type "help", "copyright", "credits" or "license" for more information.
|
|
23
|
-
# >>> import deno
|
|
24
|
-
# >>> deno.find_deno_bin()
|
|
25
|
-
# '/Users/manzt/.cache/uv/archive-v0/BykgqI7nUKj0T27s79pu3/bin/deno'
|
|
26
|
-
# >>>
|
|
27
|
-
```
|
deno-2.5.0/README.md
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# denop
|
|
2
|
-
|
|
3
|
-
Distribution of [Deno](https://deno.com/) for PyPI.
|
|
4
|
-
|
|
5
|
-
```sh
|
|
6
|
-
scripts/build.sh # build all the distributions under ./dist
|
|
7
|
-
uvx --from dist/deno-2.3.5-py3-none-macosx_11_0_arm64.whl deno --version
|
|
8
|
-
# deno 2.3.5 (stable, release, aarch64-apple-darwin)
|
|
9
|
-
# v8 13.7.152.6-rusty
|
|
10
|
-
# typescript 5.8.3
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
```py
|
|
14
|
-
$ uv run --with dist/deno-2.3.5-py3-none-macosx_11_0_arm64.whl python
|
|
15
|
-
# Python 3.13.3 (main, May 30 2025, 05:45:55) [Clang 20.1.4 ] on darwin
|
|
16
|
-
# Type "help", "copyright", "credits" or "license" for more information.
|
|
17
|
-
# >>> import deno
|
|
18
|
-
# >>> deno.find_deno_bin()
|
|
19
|
-
# '/Users/manzt/.cache/uv/archive-v0/BykgqI7nUKj0T27s79pu3/bin/deno'
|
|
20
|
-
# >>>
|
|
21
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|