jsubmod 0.0.1__py3-none-any.whl
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/__init__.py +3 -0
- jsubmod/__main__.py +4 -0
- jsubmod/cli.py +3 -0
- jsubmod-0.0.1.dist-info/METADATA +18 -0
- jsubmod-0.0.1.dist-info/RECORD +8 -0
- jsubmod-0.0.1.dist-info/WHEEL +5 -0
- jsubmod-0.0.1.dist-info/entry_points.txt +2 -0
- jsubmod-0.0.1.dist-info/top_level.txt +1 -0
jsubmod/__init__.py
ADDED
jsubmod/__main__.py
ADDED
jsubmod/cli.py
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,8 @@
|
|
|
1
|
+
jsubmod/__init__.py,sha256=24EhFj6UgmRcWyjJTDy7Si6sVs2YDCrpkG2ZU5o9bLQ,42
|
|
2
|
+
jsubmod/__main__.py,sha256=MHKZ_ae3fSLGTLUUMOx15fWdeOnJSHhq-zslRP5F5Lc,79
|
|
3
|
+
jsubmod/cli.py,sha256=DlEQxi7t4EOLS8Ur_bJjd28lDz-RbG4QNRBIrjN3OA4,57
|
|
4
|
+
jsubmod-0.0.1.dist-info/METADATA,sha256=jrDWmbJKFd6Gz1DNVPV_gQhU_Q-v0GpNas2A70cKTqA,306
|
|
5
|
+
jsubmod-0.0.1.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
6
|
+
jsubmod-0.0.1.dist-info/entry_points.txt,sha256=FY-D6XvPdZrwfsAf6YhqnzLFqZF1wTzsP0zmQKMvw7k,45
|
|
7
|
+
jsubmod-0.0.1.dist-info/top_level.txt,sha256=z7hfGofgaEygwejgW7cdD9EZCVwgeuWxIuMEx6fVZCU,8
|
|
8
|
+
jsubmod-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jsubmod
|