ChatUV 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.
chatuv/__init__.py
ADDED
chatuv/cli.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Command line entry point for ChatUV."""
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
from typing import List, Optional
|
|
5
|
+
|
|
6
|
+
from . import __version__
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def build_parser():
|
|
10
|
+
parser = argparse.ArgumentParser(
|
|
11
|
+
prog="chatuv",
|
|
12
|
+
description="Bootstrap uv-based Python environments from low-version Python shells.",
|
|
13
|
+
)
|
|
14
|
+
parser.add_argument("--version", action="version", version="chatuv %s" % __version__)
|
|
15
|
+
return parser
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main(argv=None):
|
|
19
|
+
# type: (Optional[List[str]]) -> int
|
|
20
|
+
build_parser().parse_args(argv)
|
|
21
|
+
print("ChatUV placeholder package installed. Environment setup commands will arrive in a later release.")
|
|
22
|
+
return 0
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
if __name__ == "__main__": # pragma: no cover
|
|
26
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ChatUV
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ChatUV: bootstrap uv-based Python environments from low-version Python shells
|
|
5
|
+
Author-email: ChatArch <1073853456@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: chatuv
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Dynamic: license-file
|
|
14
|
+
|
|
15
|
+
# ChatUV
|
|
16
|
+
|
|
17
|
+
ChatUV will bootstrap uv-based Python environments from low-version Python shells.
|
|
18
|
+
|
|
19
|
+
This initial `0.0.1` release is a placeholder package used to reserve and verify the PyPI project and Trusted Publisher flow. The environment setup implementation will land in a later release.
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install ChatUV
|
|
25
|
+
chatuv --help
|
|
26
|
+
chatuv --version
|
|
27
|
+
```
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
chatuv/__init__.py,sha256=Vmb7yGYRdY_Rkts_1hACAodLkF2U_bc7M8xwak5lKXo,72
|
|
2
|
+
chatuv/cli.py,sha256=z1p5a1T5OANfVI-YlCSVS4Wmige-NFHpCOMYns3LxF4,713
|
|
3
|
+
chatuv-0.0.1.dist-info/licenses/LICENSE,sha256=G-fJLQ4pkXXISE3qeN8J5Cw5VRoNongA0hbsHA9TRe8,1065
|
|
4
|
+
chatuv-0.0.1.dist-info/METADATA,sha256=1TsmC6jI52K9-RnBcczpsBn9A1CDfJGeu1YMA8U_mNk,790
|
|
5
|
+
chatuv-0.0.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
6
|
+
chatuv-0.0.1.dist-info/entry_points.txt,sha256=F3eo83akkWT-fZ4lz0E1T5vhbKPQNUD_aiXT8LFRtFk,43
|
|
7
|
+
chatuv-0.0.1.dist-info/top_level.txt,sha256=BQiftraGPH9d9AYVozrLAr0xvlMrGkMh6rKSwnrslM4,7
|
|
8
|
+
chatuv-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ChatArch
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
chatuv
|