lookeng-cli 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.
- lookeng_cli-0.0.1/LICENSE +1 -0
- lookeng_cli-0.0.1/PKG-INFO +25 -0
- lookeng_cli-0.0.1/README.md +11 -0
- lookeng_cli-0.0.1/pyproject.toml +26 -0
- lookeng_cli-0.0.1/setup.cfg +4 -0
- lookeng_cli-0.0.1/src/lookeng_cli/__init__.py +5 -0
- lookeng_cli-0.0.1/src/lookeng_cli.egg-info/PKG-INFO +25 -0
- lookeng_cli-0.0.1/src/lookeng_cli.egg-info/SOURCES.txt +9 -0
- lookeng_cli-0.0.1/src/lookeng_cli.egg-info/dependency_links.txt +1 -0
- lookeng_cli-0.0.1/src/lookeng_cli.egg-info/top_level.txt +1 -0
- lookeng_cli-0.0.1/tests/test_version.py +5 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MIT
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lookeng-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: lookeng-cli package
|
|
5
|
+
Author-email: rexwzh <1073853456@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: lookeng_cli
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Dynamic: license-file
|
|
14
|
+
|
|
15
|
+
# lookeng-cli
|
|
16
|
+
|
|
17
|
+
lookeng-cli package
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
chattool pypi doctor --project-dir .
|
|
23
|
+
chattool pypi build --project-dir .
|
|
24
|
+
chattool pypi check --project-dir .
|
|
25
|
+
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lookeng-cli"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "lookeng-cli package"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{name = "rexwzh", email = "1073853456@qq.com"}]
|
|
13
|
+
keywords = ["lookeng_cli"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.dynamic]
|
|
20
|
+
version = {attr = "lookeng_cli.__version__"}
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.packages.find]
|
|
23
|
+
where = ["src"]
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
include-package-data = true
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lookeng-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: lookeng-cli package
|
|
5
|
+
Author-email: rexwzh <1073853456@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: lookeng_cli
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Dynamic: license-file
|
|
14
|
+
|
|
15
|
+
# lookeng-cli
|
|
16
|
+
|
|
17
|
+
lookeng-cli package
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
chattool pypi doctor --project-dir .
|
|
23
|
+
chattool pypi build --project-dir .
|
|
24
|
+
chattool pypi check --project-dir .
|
|
25
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lookeng_cli
|