sessionbin 0.0.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,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: sessionbin
3
+ Version: 0.0.1
4
+ Summary: sessionbin CLI
5
+ Author: Martin Prpič
6
+ Author-email: Martin Prpič <martin.prpic@gmail.com>
7
+ License-Expression: MIT
8
+ Requires-Dist: click>=8.3.0
9
+ Requires-Python: >=3.10
10
+ Project-URL: Homepage, https://github.com/sessionbin/sessionbin-cli
11
+ Project-URL: Repository, https://github.com/sessionbin/sessionbin-cli
12
+ Description-Content-Type: text/markdown
13
+
14
+ # sessionbin-cli
@@ -0,0 +1 @@
1
+ # sessionbin-cli
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["uv_build>=0.9.3,<0.10.0"]
3
+ build-backend = "uv_build"
4
+
5
+ [project]
6
+ name = "sessionbin"
7
+ version = "0.0.1"
8
+ description = "sessionbin CLI"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ authors = [
12
+ { name = "Martin Prpič", email = "martin.prpic@gmail.com" }
13
+ ]
14
+ requires-python = ">=3.10"
15
+ dependencies = [
16
+ "click>=8.3.0",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/sessionbin/sessionbin-cli"
21
+ Repository = "https://github.com/sessionbin/sessionbin-cli"
22
+
23
+ [project.scripts]
24
+ sessionbin = "sessionbin.cli:cli"
25
+
26
+ [dependency-groups]
27
+ dev = [
28
+ "pytest>=8.4.2",
29
+ ]
30
+
31
+ [tool.ruff]
32
+ line-length = 100
33
+
34
+ [tool.ruff.lint]
35
+ # https://docs.astral.sh/ruff/rules/
36
+ select = ["F", "E", "W", "I", "N"]
37
+
38
+ [tool.mypy]
39
+ python_version = "3.13"
40
+ warn_unused_configs = true
41
+ warn_unreachable = true
42
+ warn_no_return = true
43
+ warn_unused_ignores = true
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,11 @@
1
+ import click
2
+
3
+ CONTEXT_SETTINGS = {
4
+ "help_option_names": ["-h", "--help"],
5
+ }
6
+
7
+
8
+ @click.command(context_settings=CONTEXT_SETTINGS)
9
+ def cli():
10
+ """sessionbin CLI."""
11
+ click.echo("sessionbin")