cli-ih 0.5.2__tar.gz → 0.5.2.2__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.
@@ -0,0 +1 @@
1
+ from . import InputHandler
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cli_ih
3
- Version: 0.5.2
3
+ Version: 0.5.2.2
4
4
  Summary: A background command handler for python's command line interface.
5
5
  Author-email: Hotment <michatchuplay@gmail.com>
6
6
  Requires-Python: >=3.8
@@ -20,12 +20,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
20
20
 
21
21
  ## Installation
22
22
 
23
- pip install cli-ih
23
+ `pip install cli-ih`
24
24
 
25
25
  ## Quick Start
26
26
 
27
27
  ```python
28
- from cli-ih import InputHandler
28
+ from cli_ih import InputHandler
29
29
 
30
30
  def greet(args):
31
31
  print(f"Hello, {' '.join(args)}!")
@@ -12,12 +12,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
12
12
 
13
13
  ## Installation
14
14
 
15
- pip install cli-ih
15
+ `pip install cli-ih`
16
16
 
17
17
  ## Quick Start
18
18
 
19
19
  ```python
20
- from cli-ih import InputHandler
20
+ from cli_ih import InputHandler
21
21
 
22
22
  def greet(args):
23
23
  print(f"Hello, {' '.join(args)}!")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cli_ih
3
- Version: 0.5.2
3
+ Version: 0.5.2.2
4
4
  Summary: A background command handler for python's command line interface.
5
5
  Author-email: Hotment <michatchuplay@gmail.com>
6
6
  Requires-Python: >=3.8
@@ -20,12 +20,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
20
20
 
21
21
  ## Installation
22
22
 
23
- pip install cli-ih
23
+ `pip install cli-ih`
24
24
 
25
25
  ## Quick Start
26
26
 
27
27
  ```python
28
- from cli-ih import InputHandler
28
+ from cli_ih import InputHandler
29
29
 
30
30
  def greet(args):
31
31
  print(f"Hello, {' '.join(args)}!")
@@ -1,6 +1,7 @@
1
1
  README.md
2
2
  pyproject.toml
3
3
  setup.py
4
+ InputHandler/InputHandler.py
4
5
  InputHandler/__init__.py
5
6
  cli_ih.egg-info/PKG-INFO
6
7
  cli_ih.egg-info/SOURCES.txt
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cli_ih"
3
- version = "0.5.2"
3
+ version = "0.5.2.2"
4
4
  description = "A background command handler for python's command line interface."
5
5
  readme = "README.md"
6
6
  requires-python = ">= 3.8"
@@ -5,7 +5,7 @@ with open("README.md", "r") as f:
5
5
 
6
6
  setup(
7
7
  name="cli_ih",
8
- version = "0.5.2",
8
+ version = "0.5.2.2",
9
9
  packages=find_packages(),
10
10
  install_requires = [
11
11
  'logging>=0.4.9.6'
File without changes