validbot 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.
- validbot-0.0.1/PKG-INFO +25 -0
- validbot-0.0.1/README.md +10 -0
- validbot-0.0.1/pyproject.toml +25 -0
- validbot-0.0.1/validbot_placeholder/__init__.py +15 -0
validbot-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: validbot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — did you mean 'validibot-cli'? See https://github.com/danielmcquillen/validibot
|
|
5
|
+
Project-URL: Homepage, https://validibot.com
|
|
6
|
+
Project-URL: Repository, https://github.com/danielmcquillen/validibot
|
|
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
|
+
# validbot
|
|
17
|
+
|
|
18
|
+
**This is a name-reservation package.** Did you mean `validibot`?
|
|
19
|
+
|
|
20
|
+
## Looking for Validibot?
|
|
21
|
+
|
|
22
|
+
- **Platform:** https://github.com/danielmcquillen/validibot
|
|
23
|
+
- **CLI:** `pip install validibot-cli`
|
|
24
|
+
- **Shared library:** `pip install validibot-shared`
|
|
25
|
+
- **Documentation:** https://docs.validibot.com
|
validbot-0.0.1/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# validbot
|
|
2
|
+
|
|
3
|
+
**This is a name-reservation package.** Did you mean `validibot`?
|
|
4
|
+
|
|
5
|
+
## Looking for Validibot?
|
|
6
|
+
|
|
7
|
+
- **Platform:** https://github.com/danielmcquillen/validibot
|
|
8
|
+
- **CLI:** `pip install validibot-cli`
|
|
9
|
+
- **Shared library:** `pip install validibot-shared`
|
|
10
|
+
- **Documentation:** https://docs.validibot.com
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "validbot"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Placeholder — did you mean 'validibot-cli'? See https://github.com/danielmcquillen/validibot"
|
|
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"
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["hatchling"]
|
|
22
|
+
build-backend = "hatchling.build"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["validbot_placeholder"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Validbot name-reservation package.
|
|
3
|
+
|
|
4
|
+
Did you mean 'validibot'? See https://github.com/danielmcquillen/validibot
|
|
5
|
+
For the CLI: pip install validibot-cli
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import warnings
|
|
9
|
+
|
|
10
|
+
warnings.warn(
|
|
11
|
+
"You installed 'validbot' — did you mean 'validibot'? "
|
|
12
|
+
"See https://github.com/danielmcquillen/validibot — "
|
|
13
|
+
"for the CLI, run: pip install validibot-cli",
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|