jsubmod 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.
jsubmod-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: jsubmod
3
+ Version: 0.0.1
4
+ Summary: Minimal Python package with a hello world CLI.
5
+ Author: lq
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # jsubmod
10
+
11
+ Minimal Python package with a command line entrypoint.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ python -m pip install -e .
17
+ jsubmod
18
+ ```
@@ -0,0 +1,10 @@
1
+ # jsubmod
2
+
3
+ Minimal Python package with a command line entrypoint.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ python -m pip install -e .
9
+ jsubmod
10
+ ```
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "jsubmod"
7
+ version = "0.0.1"
8
+ description = "Minimal Python package with a hello world CLI."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [
12
+ { name = "lq" }
13
+ ]
14
+
15
+ [project.scripts]
16
+ jsubmod = "jsubmod.cli:main"
17
+
18
+ [tool.setuptools]
19
+ package-dir = {"" = "src"}
20
+
21
+ [tool.setuptools.packages.find]
22
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ __all__ = ["main"]
2
+
3
+ from .cli import main
@@ -0,0 +1,4 @@
1
+ from .cli import main
2
+
3
+ if __name__ == "__main__":
4
+ raise SystemExit(main())
@@ -0,0 +1,3 @@
1
+ def main() -> int:
2
+ print("hello world")
3
+ return 0
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: jsubmod
3
+ Version: 0.0.1
4
+ Summary: Minimal Python package with a hello world CLI.
5
+ Author: lq
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # jsubmod
10
+
11
+ Minimal Python package with a command line entrypoint.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ python -m pip install -e .
17
+ jsubmod
18
+ ```
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/jsubmod/__init__.py
4
+ src/jsubmod/__main__.py
5
+ src/jsubmod/cli.py
6
+ src/jsubmod.egg-info/PKG-INFO
7
+ src/jsubmod.egg-info/SOURCES.txt
8
+ src/jsubmod.egg-info/dependency_links.txt
9
+ src/jsubmod.egg-info/entry_points.txt
10
+ src/jsubmod.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ jsubmod = jsubmod.cli:main
@@ -0,0 +1 @@
1
+ jsubmod