validbot-shared 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,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: validbot-shared
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — did you mean 'validibot-shared'? See https://github.com/danielmcquillen/validibot-shared
|
|
5
|
+
Project-URL: Homepage, https://validibot.com
|
|
6
|
+
Project-URL: Repository, https://github.com/danielmcquillen/validibot-shared
|
|
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-shared
|
|
17
|
+
|
|
18
|
+
**This is a name-reservation package.** Did you mean `validibot-shared`?
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install validibot-shared
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- **Source code:** https://github.com/danielmcquillen/validibot-shared
|
|
25
|
+
- **Documentation:** https://docs.validibot.com
|
|
26
|
+
- **Validibot platform:** https://github.com/danielmcquillen/validibot
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# validbot-shared
|
|
2
|
+
|
|
3
|
+
**This is a name-reservation package.** Did you mean `validibot-shared`?
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install validibot-shared
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
- **Source code:** https://github.com/danielmcquillen/validibot-shared
|
|
10
|
+
- **Documentation:** https://docs.validibot.com
|
|
11
|
+
- **Validibot platform:** https://github.com/danielmcquillen/validibot
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "validbot-shared"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Placeholder — did you mean 'validibot-shared'? See https://github.com/danielmcquillen/validibot-shared"
|
|
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-shared"
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["hatchling"]
|
|
22
|
+
build-backend = "hatchling.build"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["validbot_shared_placeholder"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Validbot-shared name-reservation package.
|
|
3
|
+
|
|
4
|
+
Did you mean 'validibot-shared'? pip install validibot-shared
|
|
5
|
+
See https://github.com/danielmcquillen/validibot-shared
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import warnings
|
|
9
|
+
|
|
10
|
+
warnings.warn(
|
|
11
|
+
"You installed 'validbot-shared' — did you mean 'validibot-shared'? "
|
|
12
|
+
"Run: pip install validibot-shared — "
|
|
13
|
+
"see https://github.com/danielmcquillen/validibot-shared",
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|