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 +18 -0
- jsubmod-0.0.1/README.md +10 -0
- jsubmod-0.0.1/pyproject.toml +22 -0
- jsubmod-0.0.1/setup.cfg +4 -0
- jsubmod-0.0.1/src/jsubmod/__init__.py +3 -0
- jsubmod-0.0.1/src/jsubmod/__main__.py +4 -0
- jsubmod-0.0.1/src/jsubmod/cli.py +3 -0
- jsubmod-0.0.1/src/jsubmod.egg-info/PKG-INFO +18 -0
- jsubmod-0.0.1/src/jsubmod.egg-info/SOURCES.txt +10 -0
- jsubmod-0.0.1/src/jsubmod.egg-info/dependency_links.txt +1 -0
- jsubmod-0.0.1/src/jsubmod.egg-info/entry_points.txt +2 -0
- jsubmod-0.0.1/src/jsubmod.egg-info/top_level.txt +1 -0
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
|
+
```
|
jsubmod-0.0.1/README.md
ADDED
|
@@ -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"]
|
jsubmod-0.0.1/setup.cfg
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
|
+
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jsubmod
|