chatup 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.
chatup/__init__.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chatup
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Chattool Setup
|
|
5
|
+
Author-email: rexwzh <1073853456@qq.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: chatup,cli
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: click>=8.0
|
|
14
|
+
Requires-Dist: chatstyle
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
# chatup
|
|
18
|
+
|
|
19
|
+
Chattool Setup
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
python -m pytest -q
|
|
25
|
+
python -m build
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Layout
|
|
29
|
+
|
|
30
|
+
- `src/`: package source code
|
|
31
|
+
- `tests/code-tests/`: code tests and migrated historical tests
|
|
32
|
+
- `tests/cli-tests/`: real CLI tests, doc-first
|
|
33
|
+
- `tests/mock-cli-tests/`: mock/fake CLI tests, doc-first
|
|
34
|
+
- `docs/`: long-lived project docs
|
|
35
|
+
|
|
36
|
+
## Development Notes
|
|
37
|
+
|
|
38
|
+
See `DEVELOP.md` and `setup.md` before expanding the scaffold.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
chatup/__init__.py,sha256=idxxM8l9fPG6NN0HhTTTOX3gSUgWV8RXqZqzOSGDias,72
|
|
2
|
+
chatup-0.0.1.dist-info/licenses/LICENSE,sha256=rcNzZvQDg1wUcKst-T04N9Rxk3L8HvhZPZIuBvAz-LI,4
|
|
3
|
+
chatup-0.0.1.dist-info/METADATA,sha256=LN268KVcmqyqwuw2ecfZNowfdoHyFJXGVFAmfJFSx0U,837
|
|
4
|
+
chatup-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
5
|
+
chatup-0.0.1.dist-info/entry_points.txt,sha256=UwDEF49xLGEiVaZdyvOYl9z3HxBGIeARoPBcsiE8bs4,43
|
|
6
|
+
chatup-0.0.1.dist-info/top_level.txt,sha256=BngXBrQlarnWVbaDEyydJqJF-GEeGT1EmYiulHOn3F0,7
|
|
7
|
+
chatup-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
chatup
|