smbcloud-cli 0.3.35__py3-none-win_amd64.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.
|
Binary file
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: smbcloud-cli
|
|
3
|
+
Version: 0.3.35
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Environment :: Console
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Operating System :: MacOS
|
|
9
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
10
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Rust
|
|
13
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
14
|
+
Classifier: Topic :: System :: Systems Administration
|
|
15
|
+
Classifier: Topic :: Utilities
|
|
16
|
+
Summary: smbCloud command line interface.
|
|
17
|
+
Keywords: cli,cloud,smbcloud,web2,web3
|
|
18
|
+
Author-email: Seto Elkahfi <hej@setoelkahfi.se>
|
|
19
|
+
License: Apache-2.0
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
22
|
+
Project-URL: Documentation, https://docs.smbcloud.xyz/cli
|
|
23
|
+
Project-URL: Homepage, https://smbcloud.xyz/
|
|
24
|
+
Project-URL: Issues, https://github.com/smbcloudXYZ/smbcloud-cli/issues
|
|
25
|
+
Project-URL: Repository, https://github.com/smbcloudXYZ/smbcloud-cli
|
|
26
|
+
|
|
27
|
+
<!-- LOGO -->
|
|
28
|
+
<h1>
|
|
29
|
+
<p align="center">
|
|
30
|
+
<img src="https://avatars.githubusercontent.com/u/89791739?s=200&v=4" alt="smbCloud Logo" width="128">
|
|
31
|
+
<br>smbCloud CLI
|
|
32
|
+
</h1>
|
|
33
|
+
<p align="center">
|
|
34
|
+
Deploy to the cloud in one command.
|
|
35
|
+
<br />
|
|
36
|
+
<br />
|
|
37
|
+
<a href="https://www.smbcloud.xyz/">Website</a>
|
|
38
|
+
·
|
|
39
|
+
<a href="https://docs.smbcloud.xyz/cli">Documentation</a>
|
|
40
|
+
·
|
|
41
|
+
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/releases">Releases</a>
|
|
42
|
+
·
|
|
43
|
+
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/issues">Issues</a>
|
|
44
|
+
</p>
|
|
45
|
+
<p align="center">
|
|
46
|
+
<a href="https://pypi.org/project/smbcloud-cli/"><img alt="PyPI" src="https://img.shields.io/pypi/v/smbcloud-cli"></a>
|
|
47
|
+
<a href="https://www.npmjs.com/package/@smbcloud/cli"><img alt="npm" src="https://img.shields.io/npm/v/@smbcloud/cli"></a>
|
|
48
|
+
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/smbcloudXYZ/smbcloud-cli"></a>
|
|
49
|
+
</p>
|
|
50
|
+
</p>
|
|
51
|
+
|
|
52
|
+
## About
|
|
53
|
+
|
|
54
|
+
**`smb`** is the command-line interface for [smbCloud](https://www.smbcloud.xyz/) — the modern cloud deployment platform. We've eliminated the friction of cloud infrastructure so you can focus on what matters: building an incredible product.
|
|
55
|
+
|
|
56
|
+
Ship your Rust, Node.js, Ruby, or Swift app with a single, magical command.
|
|
57
|
+
|
|
58
|
+
## Install
|
|
59
|
+
|
|
60
|
+
```sh
|
|
61
|
+
pip install smbcloud-cli
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
This package installs the native `smb` executable for your platform directly — no Node.js, no Docker, no runtime dependencies.
|
|
65
|
+
|
|
66
|
+
## Quick Start
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
smb login
|
|
70
|
+
smb init
|
|
71
|
+
smb deploy
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
That's it. Your app is live.
|
|
75
|
+
|
|
76
|
+
## Other Installation Methods
|
|
77
|
+
|
|
78
|
+
### Homebrew (macOS & Linux)
|
|
79
|
+
|
|
80
|
+
```sh
|
|
81
|
+
brew tap smbcloudXYZ/tap
|
|
82
|
+
brew install cli
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### npm
|
|
86
|
+
|
|
87
|
+
```sh
|
|
88
|
+
npm install -g @smbcloud/cli
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Shell (macOS / Linux)
|
|
92
|
+
|
|
93
|
+
```sh
|
|
94
|
+
curl -fsSL https://raw.githubusercontent.com/smbcloudXYZ/smbcloud-cli/main/install-unix.sh | sh
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
### PowerShell (Windows)
|
|
98
|
+
|
|
99
|
+
```powershell
|
|
100
|
+
irm https://raw.githubusercontent.com/smbcloudXYZ/smbcloud-cli/main/install-windows.sh | iex
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Or grab a pre-built binary from the [Releases](https://github.com/smbcloudXYZ/smbcloud-cli/releases) page.
|
|
104
|
+
|
|
105
|
+
## Documentation
|
|
106
|
+
|
|
107
|
+
Full documentation is available at [docs.smbcloud.xyz/cli](https://docs.smbcloud.xyz/cli).
|
|
108
|
+
|
|
109
|
+
## Platform Support
|
|
110
|
+
|
|
111
|
+
This package ships pre-built native binaries for:
|
|
112
|
+
|
|
113
|
+
| Platform | Architecture |
|
|
114
|
+
| ------------- | ------------ |
|
|
115
|
+
| macOS | arm64, x64 |
|
|
116
|
+
| Linux (glibc) | arm64, x64 |
|
|
117
|
+
| Windows | arm64, x64 |
|
|
118
|
+
|
|
119
|
+
## Source & Issues
|
|
120
|
+
|
|
121
|
+
This is a native binary distributed via PyPI. The source code lives at
|
|
122
|
+
[github.com/smbcloudXYZ/smbcloud-cli](https://github.com/smbcloudXYZ/smbcloud-cli).
|
|
123
|
+
Please report bugs and feature requests there.
|
|
124
|
+
|
|
125
|
+
## License
|
|
126
|
+
|
|
127
|
+
[Apache-2.0](https://github.com/smbcloudXYZ/smbcloud-cli/blob/main/LICENSE)
|
|
128
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
smbcloud_cli-0.3.35.data/scripts/smb.exe,sha256=aOLDAQPuE810AgYf96Zt1qrj6Ja_U3hbzVqD2cLKAeM,10815488
|
|
2
|
+
smbcloud_cli-0.3.35.dist-info/METADATA,sha256=PP35Z00qGrfy8iesPj0vcAQbhsH5mWA11EVY882Jrf0,3999
|
|
3
|
+
smbcloud_cli-0.3.35.dist-info/WHEEL,sha256=uJOc2U-Q1x95AlblQcqMRb3iR4QnPtdI7X2ycPN99rM,94
|
|
4
|
+
smbcloud_cli-0.3.35.dist-info/sboms/smbcloud-cli.cyclonedx.json,sha256=72mXjSkl_nCNziC-b0HcpEoAGJh0qPNGBQkefLHTm5w,327018
|
|
5
|
+
smbcloud_cli-0.3.35.dist-info/RECORD,,
|