ChatUV 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.
- chatuv-0.0.1/LICENSE +21 -0
- chatuv-0.0.1/PKG-INFO +27 -0
- chatuv-0.0.1/README.md +13 -0
- chatuv-0.0.1/pyproject.toml +29 -0
- chatuv-0.0.1/setup.cfg +4 -0
- chatuv-0.0.1/src/ChatUV.egg-info/PKG-INFO +27 -0
- chatuv-0.0.1/src/ChatUV.egg-info/SOURCES.txt +11 -0
- chatuv-0.0.1/src/ChatUV.egg-info/dependency_links.txt +1 -0
- chatuv-0.0.1/src/ChatUV.egg-info/entry_points.txt +2 -0
- chatuv-0.0.1/src/ChatUV.egg-info/top_level.txt +1 -0
- chatuv-0.0.1/src/chatuv/__init__.py +5 -0
- chatuv-0.0.1/src/chatuv/cli.py +26 -0
- chatuv-0.0.1/tests/test_version.py +12 -0
chatuv-0.0.1/LICENSE
ADDED
|
@@ -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.
|
chatuv-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
+
```
|
chatuv-0.0.1/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# ChatUV
|
|
2
|
+
|
|
3
|
+
ChatUV will bootstrap uv-based Python environments from low-version Python shells.
|
|
4
|
+
|
|
5
|
+
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.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install ChatUV
|
|
11
|
+
chatuv --help
|
|
12
|
+
chatuv --version
|
|
13
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ChatUV"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "ChatUV: bootstrap uv-based Python environments from low-version Python shells"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.6"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{name = "ChatArch", email = "1073853456@qq.com"}]
|
|
13
|
+
keywords = ["chatuv"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
chatuv = "chatuv.cli:main"
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.dynamic]
|
|
23
|
+
version = {attr = "chatuv.__version__"}
|
|
24
|
+
|
|
25
|
+
[tool.setuptools.packages.find]
|
|
26
|
+
where = ["src"]
|
|
27
|
+
|
|
28
|
+
[tool.setuptools]
|
|
29
|
+
include-package-data = true
|
chatuv-0.0.1/setup.cfg
ADDED
|
@@ -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,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/ChatUV.egg-info/PKG-INFO
|
|
5
|
+
src/ChatUV.egg-info/SOURCES.txt
|
|
6
|
+
src/ChatUV.egg-info/dependency_links.txt
|
|
7
|
+
src/ChatUV.egg-info/entry_points.txt
|
|
8
|
+
src/ChatUV.egg-info/top_level.txt
|
|
9
|
+
src/chatuv/__init__.py
|
|
10
|
+
src/chatuv/cli.py
|
|
11
|
+
tests/test_version.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
chatuv
|
|
@@ -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,12 @@
|
|
|
1
|
+
from chatuv import __version__
|
|
2
|
+
from chatuv.cli import main
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def test_version_present():
|
|
6
|
+
assert __version__ == "0.0.1"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def test_cli_placeholder(capsys):
|
|
10
|
+
assert main([]) == 0
|
|
11
|
+
out = capsys.readouterr().out
|
|
12
|
+
assert "ChatUV placeholder package installed" in out
|