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.
@@ -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,11 @@
1
+ # lookeng-cli
2
+
3
+ lookeng-cli package
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ chattool pypi doctor --project-dir .
9
+ chattool pypi build --project-dir .
10
+ chattool pypi check --project-dir .
11
+ ```
@@ -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,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """lookeng-cli package."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.1"
@@ -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,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/lookeng_cli/__init__.py
5
+ src/lookeng_cli.egg-info/PKG-INFO
6
+ src/lookeng_cli.egg-info/SOURCES.txt
7
+ src/lookeng_cli.egg-info/dependency_links.txt
8
+ src/lookeng_cli.egg-info/top_level.txt
9
+ tests/test_version.py
@@ -0,0 +1 @@
1
+ lookeng_cli
@@ -0,0 +1,5 @@
1
+ from lookeng_cli import __version__
2
+
3
+
4
+ def test_version_present():
5
+ assert __version__ == "0.0.1"