nucli 0.2.0__tar.gz → 0.2.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.
- {nucli-0.2.0 → nucli-0.2.1}/PKG-INFO +2 -2
- {nucli-0.2.0 → nucli-0.2.1}/pyproject.toml +2 -2
- {nucli-0.2.0 → nucli-0.2.1}/.gitignore +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/LICENSE.md +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/README.md +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/__init__.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/__main__.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/_meta.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/commands/__init__.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/commands/demo.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/commands/doctor.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/commands/telemetry.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/demos/__init__.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/demos/counter.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/demos/movies.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/demos/sampled.py +0 -0
- {nucli-0.2.0 → nucli-0.2.1}/src/nu/_cli/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: nucli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: The `nu` command line: doctor, demos, telemetry. Ships alongside the nucore kernel and the nustd fabrics.
|
|
5
5
|
Project-URL: Repository, https://github.com/nustackdev/nu
|
|
6
6
|
Author-email: Gor Arakelyan <gorarkln@gmail.com>
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
17
|
Requires-Python: >=3.10
|
|
18
18
|
Requires-Dist: click>=8.0
|
|
19
|
-
Requires-Dist: nustd>=0.2.
|
|
19
|
+
Requires-Dist: nustd>=0.2.1
|
|
20
20
|
Requires-Dist: rich-click>=1.6
|
|
21
21
|
Requires-Dist: rich>=10.7
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nucli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "The `nu` command line: doctor, demos, telemetry. Ships alongside the nucore kernel and the nustd fabrics."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -15,7 +15,7 @@ requires-python = ">=3.10"
|
|
|
15
15
|
# than the bare kernel because the packaged demos (`nu demo movies`) run on
|
|
16
16
|
# `nu.ui` and `nu.kv` at runtime.
|
|
17
17
|
dependencies = [
|
|
18
|
-
"nustd>=0.2.
|
|
18
|
+
"nustd>=0.2.1",
|
|
19
19
|
"click>=8.0",
|
|
20
20
|
"rich>=10.7",
|
|
21
21
|
"rich-click>=1.6",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|