pykernel-cli 1.1.0__tar.gz → 1.2.0__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.
Files changed (25) hide show
  1. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/LICENSE +1 -1
  2. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/PKG-INFO +4 -1
  3. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/commands/builtins.py +1 -1
  4. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/config.py +8 -8
  5. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/kernel.py +1 -0
  6. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/PKG-INFO +4 -1
  7. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pyproject.toml +5 -1
  8. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/README.md +0 -0
  9. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/__init__.py +0 -0
  10. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/__main__.py +0 -0
  11. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/commands/__init__.py +0 -0
  12. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/commands/inspector.py +0 -0
  13. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/commands/shell.py +0 -0
  14. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/commands/snippets.py +0 -0
  15. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/__init__.py +0 -0
  16. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/context.py +0 -0
  17. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/painter.py +0 -0
  18. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/registry.py +0 -0
  19. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel/core/repl.py +0 -0
  20. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/SOURCES.txt +0 -0
  21. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/dependency_links.txt +0 -0
  22. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/entry_points.txt +0 -0
  23. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/requires.txt +0 -0
  24. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/pykernel_cli.egg-info/top_level.txt +0 -0
  25. {pykernel_cli-1.1.0 → pykernel_cli-1.2.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Your Name
3
+ Copyright (c) 2026 zKaiden
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pykernel-cli
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: A hackable Python REPL with first-class command support
5
5
  Author-email: zKaiden <odrekzinho@gmail.com>
6
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/odrekzinho-art/pykernel
8
+ Project-URL: Repository, https://github.com/odrekzinho-art/pykernel
9
+ Project-URL: Bug Tracker, https://github.com/odrekzinho-art/pykernel/issues
7
10
  Keywords: repl,shell,interactive,python
8
11
  Classifier: Development Status :: 4 - Beta
9
12
  Classifier: Environment :: Console
@@ -57,7 +57,7 @@ def register(reg: CommandRegistry):
57
57
  category="Core")
58
58
  def cmd_exit(ctx, *args):
59
59
  ctx.print(ctx.paint.dim(" Goodbye."))
60
- raise SystemExit(0)
60
+ raise SystemExit(0)
61
61
 
62
62
  # ── /clear ────────────────────────────────────────────────────────────────
63
63
 
@@ -4,17 +4,17 @@ Config — loads ~/.pykernel/config.toml (or defaults).
4
4
  Supported keys
5
5
  --------------
6
6
  [kernel]
7
- prompt = ">>> "
7
+ prompt = "@> "
8
8
  prompt2 = "... "
9
9
  history_file = "~/.pykernel/history"
10
10
  history_size = 2000
11
11
  banner = true
12
- theme = "dark" # dark | light | none
12
+ theme = "light" # dark | light | none
13
13
 
14
14
  [kernel.colors]
15
- prompt = "cyan"
15
+ prompt = "green"
16
16
  error = "red"
17
- info = "green"
17
+ info = "cyan"
18
18
  warning = "yellow"
19
19
  result = "white"
20
20
  """
@@ -32,16 +32,16 @@ except ImportError:
32
32
 
33
33
  DEFAULTS: dict = {
34
34
  "kernel": {
35
- "prompt": ">>> ",
35
+ "prompt": "@> ",
36
36
  "prompt2": "... ",
37
37
  "history_file": "~/.pykernel/history",
38
38
  "history_size": 2000,
39
39
  "banner": True,
40
- "theme": "dark",
40
+ "theme": "light",
41
41
  "colors": {
42
- "prompt": "cyan",
42
+ "prompt": "green",
43
43
  "error": "red",
44
- "info": "green",
44
+ "info": "cyan",
45
45
  "warning": "yellow",
46
46
  "result": "white",
47
47
  },
@@ -18,6 +18,7 @@ from pykernel.commands.snippets import register as register_snippets
18
18
 
19
19
 
20
20
  def main():
21
+ os.system('cls')
21
22
  import argparse
22
23
  parser = argparse.ArgumentParser(prog="pykernel")
23
24
  parser.add_argument("--ver", action="store_true", help="Show version")
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pykernel-cli
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: A hackable Python REPL with first-class command support
5
5
  Author-email: zKaiden <odrekzinho@gmail.com>
6
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/odrekzinho-art/pykernel
8
+ Project-URL: Repository, https://github.com/odrekzinho-art/pykernel
9
+ Project-URL: Bug Tracker, https://github.com/odrekzinho-art/pykernel/issues
7
10
  Keywords: repl,shell,interactive,python
8
11
  Classifier: Development Status :: 4 - Beta
9
12
  Classifier: Environment :: Console
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pykernel-cli"
7
- version = "1.1.0"
7
+ version = "1.2.0"
8
8
  description = "A hackable Python REPL with first-class command support"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -26,6 +26,10 @@ dependencies = []
26
26
  [project.optional-dependencies]
27
27
  dev = ["build", "twine"]
28
28
 
29
+ [project.urls]
30
+ Homepage = "https://github.com/odrekzinho-art/pykernel"
31
+ Repository = "https://github.com/odrekzinho-art/pykernel"
32
+ "Bug Tracker" = "https://github.com/odrekzinho-art/pykernel/issues"
29
33
 
30
34
  [project.scripts]
31
35
  pykernel = "pykernel.kernel:main"
File without changes
File without changes