orchard-searchdata 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.
- orchard_searchdata-0.0.1/PKG-INFO +23 -0
- orchard_searchdata-0.0.1/README.md +9 -0
- orchard_searchdata-0.0.1/pyproject.toml +27 -0
- orchard_searchdata-0.0.1/setup.cfg +4 -0
- orchard_searchdata-0.0.1/src/orchard_searchdata/__init__.py +10 -0
- orchard_searchdata-0.0.1/src/orchard_searchdata.egg-info/PKG-INFO +23 -0
- orchard_searchdata-0.0.1/src/orchard_searchdata.egg-info/SOURCES.txt +7 -0
- orchard_searchdata-0.0.1/src/orchard_searchdata.egg-info/dependency_links.txt +1 -0
- orchard_searchdata-0.0.1/src/orchard_searchdata.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orchard-searchdata
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation for OrchardRank's search-data engine. Contains no functionality.
|
|
5
|
+
Author: OrchardRank LLC
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://orchardrank.com
|
|
8
|
+
Keywords: orchardrank,name-reservation
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# orchard-searchdata
|
|
16
|
+
|
|
17
|
+
**This is a name reservation and contains no functionality.**
|
|
18
|
+
|
|
19
|
+
The name is held by OrchardRank LLC so that it cannot be registered by anyone else. The real
|
|
20
|
+
package is distributed privately and installed from source; any public release under this name
|
|
21
|
+
other than this placeholder should be treated as untrusted.
|
|
22
|
+
|
|
23
|
+
<https://orchardrank.com>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# orchard-searchdata
|
|
2
|
+
|
|
3
|
+
**This is a name reservation and contains no functionality.**
|
|
4
|
+
|
|
5
|
+
The name is held by OrchardRank LLC so that it cannot be registered by anyone else. The real
|
|
6
|
+
package is distributed privately and installed from source; any public release under this name
|
|
7
|
+
other than this placeholder should be treated as untrusted.
|
|
8
|
+
|
|
9
|
+
<https://orchardrank.com>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "orchard-searchdata"
|
|
7
|
+
# Deliberately BELOW the private package's 0.1.0. Anything that genuinely requires the real
|
|
8
|
+
# engine asks for >=0.1, so this placeholder can never silently satisfy that requirement — a
|
|
9
|
+
# machine without the private source fails loudly instead of installing an empty package.
|
|
10
|
+
version = "0.0.1"
|
|
11
|
+
description = "Name reservation for OrchardRank's search-data engine. Contains no functionality."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.11"
|
|
14
|
+
license = {text = "Proprietary"}
|
|
15
|
+
authors = [{name = "OrchardRank LLC"}]
|
|
16
|
+
keywords = ["orchardrank", "name-reservation"]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 7 - Inactive",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://orchardrank.com"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["src"]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Name reservation for OrchardRank's search-data engine.
|
|
2
|
+
|
|
3
|
+
This distribution contains no functionality. The name is held by OrchardRank LLC so that it
|
|
4
|
+
cannot be registered by anyone else: the real package is installed from a private source, and
|
|
5
|
+
a public package under this name would be a supply-chain substitution.
|
|
6
|
+
|
|
7
|
+
https://orchardrank.com
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orchard-searchdata
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation for OrchardRank's search-data engine. Contains no functionality.
|
|
5
|
+
Author: OrchardRank LLC
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://orchardrank.com
|
|
8
|
+
Keywords: orchardrank,name-reservation
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# orchard-searchdata
|
|
16
|
+
|
|
17
|
+
**This is a name reservation and contains no functionality.**
|
|
18
|
+
|
|
19
|
+
The name is held by OrchardRank LLC so that it cannot be registered by anyone else. The real
|
|
20
|
+
package is distributed privately and installed from source; any public release under this name
|
|
21
|
+
other than this placeholder should be treated as untrusted.
|
|
22
|
+
|
|
23
|
+
<https://orchardrank.com>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
orchard_searchdata
|