chatup 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.
- chatup-0.0.1/LICENSE +1 -0
- chatup-0.0.1/PKG-INFO +38 -0
- chatup-0.0.1/README.md +22 -0
- chatup-0.0.1/pyproject.toml +30 -0
- chatup-0.0.1/setup.cfg +4 -0
- chatup-0.0.1/src/chatup/__init__.py +5 -0
- chatup-0.0.1/src/chatup.egg-info/PKG-INFO +38 -0
- chatup-0.0.1/src/chatup.egg-info/SOURCES.txt +11 -0
- chatup-0.0.1/src/chatup.egg-info/dependency_links.txt +1 -0
- chatup-0.0.1/src/chatup.egg-info/entry_points.txt +2 -0
- chatup-0.0.1/src/chatup.egg-info/requires.txt +2 -0
- chatup-0.0.1/src/chatup.egg-info/top_level.txt +1 -0
- chatup-0.0.1/tests/test_version.py +5 -0
chatup-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MIT
|
chatup-0.0.1/PKG-INFO
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.
|
chatup-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# chatup
|
|
2
|
+
|
|
3
|
+
Chattool Setup
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
python -m pytest -q
|
|
9
|
+
python -m build
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Layout
|
|
13
|
+
|
|
14
|
+
- `src/`: package source code
|
|
15
|
+
- `tests/code-tests/`: code tests and migrated historical tests
|
|
16
|
+
- `tests/cli-tests/`: real CLI tests, doc-first
|
|
17
|
+
- `tests/mock-cli-tests/`: mock/fake CLI tests, doc-first
|
|
18
|
+
- `docs/`: long-lived project docs
|
|
19
|
+
|
|
20
|
+
## Development Notes
|
|
21
|
+
|
|
22
|
+
See `DEVELOP.md` and `setup.md` before expanding the scaffold.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "chatup"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "Chattool Setup"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
dependencies = ["click>=8.0", "chatstyle"]
|
|
13
|
+
authors = [{name = "rexwzh", email = "1073853456@qq.com"}]
|
|
14
|
+
keywords = ["chatup", "cli"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.scripts]
|
|
21
|
+
chatup = "chatup.cli:main"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.dynamic]
|
|
24
|
+
version = {attr = "chatup.__version__"}
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["src"]
|
|
28
|
+
|
|
29
|
+
[tool.setuptools]
|
|
30
|
+
include-package-data = true
|
chatup-0.0.1/setup.cfg
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,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/chatup/__init__.py
|
|
5
|
+
src/chatup.egg-info/PKG-INFO
|
|
6
|
+
src/chatup.egg-info/SOURCES.txt
|
|
7
|
+
src/chatup.egg-info/dependency_links.txt
|
|
8
|
+
src/chatup.egg-info/entry_points.txt
|
|
9
|
+
src/chatup.egg-info/requires.txt
|
|
10
|
+
src/chatup.egg-info/top_level.txt
|
|
11
|
+
tests/test_version.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
chatup
|