validibot-client 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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: validibot-client
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — the Validibot CLI is 'validibot-cli'. See https://github.com/danielmcquillen/validibot-cli
|
|
5
|
+
Project-URL: Homepage, https://validibot.com
|
|
6
|
+
Project-URL: Repository, https://github.com/danielmcquillen/validibot-cli
|
|
7
|
+
Author-email: Daniel McQuillen <daniel@mcquilleninteractive.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: placeholder,validation,validibot
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# validibot-client
|
|
17
|
+
|
|
18
|
+
**This is a name-reservation package.** You probably want `validibot-cli`.
|
|
19
|
+
|
|
20
|
+
## Looking for the Validibot CLI?
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install validibot-cli
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- **CLI source code:** https://github.com/danielmcquillen/validibot-cli
|
|
27
|
+
- **CLI documentation:** https://docs.validibot.com/cli
|
|
28
|
+
- **Validibot platform:** https://github.com/danielmcquillen/validibot
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# validibot-client
|
|
2
|
+
|
|
3
|
+
**This is a name-reservation package.** You probably want `validibot-cli`.
|
|
4
|
+
|
|
5
|
+
## Looking for the Validibot CLI?
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install validibot-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
- **CLI source code:** https://github.com/danielmcquillen/validibot-cli
|
|
12
|
+
- **CLI documentation:** https://docs.validibot.com/cli
|
|
13
|
+
- **Validibot platform:** https://github.com/danielmcquillen/validibot
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "validibot-client"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Placeholder — the Validibot CLI is 'validibot-cli'. See https://github.com/danielmcquillen/validibot-cli"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = {text = "MIT"}
|
|
7
|
+
authors = [{name = "Daniel McQuillen", email = "daniel@mcquilleninteractive.com"}]
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
keywords = ["validibot", "validation", "placeholder"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"License :: OSI Approved :: MIT License",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://validibot.com"
|
|
18
|
+
Repository = "https://github.com/danielmcquillen/validibot-cli"
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["hatchling"]
|
|
22
|
+
build-backend = "hatchling.build"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["validibot_client_placeholder"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Validibot-client name-reservation package.
|
|
3
|
+
|
|
4
|
+
You probably want validibot-cli: pip install validibot-cli
|
|
5
|
+
See https://github.com/danielmcquillen/validibot-cli
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import warnings
|
|
9
|
+
|
|
10
|
+
warnings.warn(
|
|
11
|
+
"You installed 'validibot-client', but the correct package is 'validibot-cli'. "
|
|
12
|
+
"Run: pip install validibot-cli — "
|
|
13
|
+
"see https://github.com/danielmcquillen/validibot-cli",
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|