feishu-cli 1.0.3__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.
- feishu_cli-1.0.3/PKG-INFO +39 -0
- feishu_cli-1.0.3/README.md +24 -0
- feishu_cli-1.0.3/pyproject.toml +25 -0
- feishu_cli-1.0.3/setup.cfg +4 -0
- feishu_cli-1.0.3/src/feishu_cli/__init__.py +28 -0
- feishu_cli-1.0.3/src/feishu_cli.egg-info/PKG-INFO +39 -0
- feishu_cli-1.0.3/src/feishu_cli.egg-info/SOURCES.txt +8 -0
- feishu_cli-1.0.3/src/feishu_cli.egg-info/dependency_links.txt +1 -0
- feishu_cli-1.0.3/src/feishu_cli.egg-info/entry_points.txt +2 -0
- feishu_cli-1.0.3/src/feishu_cli.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: feishu-cli
|
|
3
|
+
Version: 1.0.3
|
|
4
|
+
Summary: Placeholder - Lark/Feishu CLI is distributed via npm: npm install -g @larksuite/cli
|
|
5
|
+
Author-email: LarkSuite <open@larksuite.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/larksuite/cli
|
|
8
|
+
Project-URL: Repository, https://github.com/larksuite/cli
|
|
9
|
+
Keywords: lark,feishu,cli,larksuite
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.7
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# feishu-cli
|
|
17
|
+
|
|
18
|
+
> **This is a placeholder package.** The official Lark/Feishu CLI is distributed via npm.
|
|
19
|
+
|
|
20
|
+
## Install the official CLI
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g @larksuite/cli
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Why does this package exist?
|
|
27
|
+
|
|
28
|
+
This package is published by the LarkSuite team to prevent name squatting on PyPI.
|
|
29
|
+
If you installed this by mistake, please uninstall it and use npm instead:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip uninstall feishu-cli
|
|
33
|
+
npm install -g @larksuite/cli
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- GitHub: <https://github.com/larksuite/cli>
|
|
39
|
+
- npm: <https://www.npmjs.com/package/@larksuite/cli>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# feishu-cli
|
|
2
|
+
|
|
3
|
+
> **This is a placeholder package.** The official Lark/Feishu CLI is distributed via npm.
|
|
4
|
+
|
|
5
|
+
## Install the official CLI
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @larksuite/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Why does this package exist?
|
|
12
|
+
|
|
13
|
+
This package is published by the LarkSuite team to prevent name squatting on PyPI.
|
|
14
|
+
If you installed this by mistake, please uninstall it and use npm instead:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip uninstall feishu-cli
|
|
18
|
+
npm install -g @larksuite/cli
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Links
|
|
22
|
+
|
|
23
|
+
- GitHub: <https://github.com/larksuite/cli>
|
|
24
|
+
- npm: <https://www.npmjs.com/package/@larksuite/cli>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "feishu-cli"
|
|
7
|
+
version = "1.0.3"
|
|
8
|
+
description = "Placeholder - Lark/Feishu CLI is distributed via npm: npm install -g @larksuite/cli"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.7"
|
|
12
|
+
authors = [{ name = "LarkSuite", email = "open@larksuite.com" }]
|
|
13
|
+
keywords = ["lark", "feishu", "cli", "larksuite"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/larksuite/cli"
|
|
22
|
+
Repository = "https://github.com/larksuite/cli"
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
feishu-cli = "feishu_cli:main"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
def main():
|
|
5
|
+
print(
|
|
6
|
+
"\n"
|
|
7
|
+
"============================================================\n"
|
|
8
|
+
" feishu-cli is officially distributed via npm, not pip.\n"
|
|
9
|
+
"============================================================\n"
|
|
10
|
+
"\n"
|
|
11
|
+
" To install the official Lark/Feishu CLI, run:\n"
|
|
12
|
+
"\n"
|
|
13
|
+
" npm install -g @larksuite/cli\n"
|
|
14
|
+
"\n"
|
|
15
|
+
" For more information, visit:\n"
|
|
16
|
+
" https://github.com/larksuite/cli\n"
|
|
17
|
+
"\n"
|
|
18
|
+
" Please uninstall this pip package:\n"
|
|
19
|
+
"\n"
|
|
20
|
+
" pip uninstall feishu-cli\n"
|
|
21
|
+
"\n"
|
|
22
|
+
"============================================================\n"
|
|
23
|
+
)
|
|
24
|
+
sys.exit(1)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
if __name__ == "__main__":
|
|
28
|
+
main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: feishu-cli
|
|
3
|
+
Version: 1.0.3
|
|
4
|
+
Summary: Placeholder - Lark/Feishu CLI is distributed via npm: npm install -g @larksuite/cli
|
|
5
|
+
Author-email: LarkSuite <open@larksuite.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/larksuite/cli
|
|
8
|
+
Project-URL: Repository, https://github.com/larksuite/cli
|
|
9
|
+
Keywords: lark,feishu,cli,larksuite
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.7
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# feishu-cli
|
|
17
|
+
|
|
18
|
+
> **This is a placeholder package.** The official Lark/Feishu CLI is distributed via npm.
|
|
19
|
+
|
|
20
|
+
## Install the official CLI
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g @larksuite/cli
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Why does this package exist?
|
|
27
|
+
|
|
28
|
+
This package is published by the LarkSuite team to prevent name squatting on PyPI.
|
|
29
|
+
If you installed this by mistake, please uninstall it and use npm instead:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip uninstall feishu-cli
|
|
33
|
+
npm install -g @larksuite/cli
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- GitHub: <https://github.com/larksuite/cli>
|
|
39
|
+
- npm: <https://www.npmjs.com/package/@larksuite/cli>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
feishu_cli
|