cheat-cli 0.1.0__tar.gz → 0.1.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.
@@ -0,0 +1 @@
1
+ recursive-include cheat_cli/data *.csv
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cheat-cli
3
- Version: 0.1.0
4
- Summary: A terminal-first cheat sheet CLI for Linux developers
5
- Author-email: RejishJ <rejish.j.d@gmail.com>
3
+ Version: 0.1.1
4
+ Summary: A terminal-first personal cheat sheet for Linux developers
5
+ Author: Rejish
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/RejishJ/cheat-cli
8
- Project-URL: Repository, https://github.com/RejishJ/cheat-cli
9
7
  Requires-Python: >=3.8
10
8
  Description-Content-Type: text/markdown
11
9
  License-File: LICENSE
@@ -7,6 +7,9 @@ from importlib.resources import files
7
7
 
8
8
  # ---------- Helpers ----------
9
9
 
10
+ def get_csv_path():
11
+ return files("cheat_cli").joinpath("data/commands.csv")
12
+
10
13
  def csv_path():
11
14
  return files("cheat_cli").joinpath("data/commands.csv")
12
15
 
@@ -84,4 +87,4 @@ def main():
84
87
  return
85
88
  delete_command(df, sys.argv[2])
86
89
  else:
87
- search(df, cmd)
90
+ search(df, cmd)
@@ -0,0 +1,2 @@
1
+ tool,command,description,tags
2
+ git,git status,Show current git working tree status,repo state branch
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cheat-cli
3
- Version: 0.1.0
4
- Summary: A terminal-first cheat sheet CLI for Linux developers
5
- Author-email: RejishJ <rejish.j.d@gmail.com>
3
+ Version: 0.1.1
4
+ Summary: A terminal-first personal cheat sheet for Linux developers
5
+ Author: Rejish
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/RejishJ/cheat-cli
8
- Project-URL: Repository, https://github.com/RejishJ/cheat-cli
9
7
  Requires-Python: >=3.8
10
8
  Description-Content-Type: text/markdown
11
9
  License-File: LICENSE
@@ -1,4 +1,5 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
3
4
  pyproject.toml
4
5
  cheat_cli/__init__.py
@@ -8,4 +9,5 @@ cheat_cli.egg-info/SOURCES.txt
8
9
  cheat_cli.egg-info/dependency_links.txt
9
10
  cheat_cli.egg-info/entry_points.txt
10
11
  cheat_cli.egg-info/requires.txt
11
- cheat_cli.egg-info/top_level.txt
12
+ cheat_cli.egg-info/top_level.txt
13
+ cheat_cli/data/commands.csv
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["setuptools>=64", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+
6
+ [project]
7
+ name = "cheat-cli"
8
+ version = "0.1.1"
9
+ description = "A terminal-first personal cheat sheet for Linux developers"
10
+ readme = "README.md"
11
+ license = {text = "MIT"}
12
+ authors = [{name = "Rejish"}]
13
+ dependencies = ["pandas", "tabulate"]
14
+ requires-python = ">=3.8"
15
+
16
+ [project.scripts]
17
+ cheat = "cheat_cli.cli:main"
18
+
19
+ [tool.setuptools]
20
+ include-package-data = true
@@ -1,25 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=64", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "cheat-cli"
7
- version = "0.1.0"
8
- description = "A terminal-first cheat sheet CLI for Linux developers"
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- license = { text = "MIT" }
12
- authors = [
13
- { name = "RejishJ", email = "rejish.j.d@gmail.com" }
14
- ]
15
- dependencies = [
16
- "pandas",
17
- "tabulate"
18
- ]
19
-
20
- [project.urls]
21
- Homepage = "https://github.com/RejishJ/cheat-cli"
22
- Repository = "https://github.com/RejishJ/cheat-cli"
23
-
24
- [project.scripts]
25
- cheat = "cheat_cli.cli:main"
File without changes
File without changes
File without changes