catalogkit 0.1.0__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.
- catalogkit-0.1.0/PKG-INFO +27 -0
- catalogkit-0.1.0/README.md +13 -0
- catalogkit-0.1.0/catalogkit.egg-info/PKG-INFO +27 -0
- catalogkit-0.1.0/catalogkit.egg-info/SOURCES.txt +7 -0
- catalogkit-0.1.0/catalogkit.egg-info/dependency_links.txt +1 -0
- catalogkit-0.1.0/catalogkit.egg-info/requires.txt +2 -0
- catalogkit-0.1.0/catalogkit.egg-info/top_level.txt +1 -0
- catalogkit-0.1.0/pyproject.toml +26 -0
- catalogkit-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: catalogkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Convenience meta-package for installing CatalogKit modules.
|
|
5
|
+
Author: ClearMetric Labs
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Clearmetric-Labs/CatalogKit
|
|
8
|
+
Project-URL: Source, https://github.com/Clearmetric-Labs/CatalogKit
|
|
9
|
+
Project-URL: Issues, https://github.com/Clearmetric-Labs/CatalogKit/issues
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: catalogkit-core>=0.1.0
|
|
13
|
+
Requires-Dist: catalogkit-query>=0.1.0
|
|
14
|
+
|
|
15
|
+
# catalogkit
|
|
16
|
+
|
|
17
|
+
`catalogkit` is a thin meta-package for convenience installs.
|
|
18
|
+
|
|
19
|
+
It provides no Python package and no `catalogkit` namespace files. Install it
|
|
20
|
+
when you want the currently supported CatalogKit modules together:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
python -m pip install catalogkit
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Install `catalogkit-query` directly when you only want the query tool and its
|
|
27
|
+
shared `catalogkit-core` dependency.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# catalogkit
|
|
2
|
+
|
|
3
|
+
`catalogkit` is a thin meta-package for convenience installs.
|
|
4
|
+
|
|
5
|
+
It provides no Python package and no `catalogkit` namespace files. Install it
|
|
6
|
+
when you want the currently supported CatalogKit modules together:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
python -m pip install catalogkit
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Install `catalogkit-query` directly when you only want the query tool and its
|
|
13
|
+
shared `catalogkit-core` dependency.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: catalogkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Convenience meta-package for installing CatalogKit modules.
|
|
5
|
+
Author: ClearMetric Labs
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/Clearmetric-Labs/CatalogKit
|
|
8
|
+
Project-URL: Source, https://github.com/Clearmetric-Labs/CatalogKit
|
|
9
|
+
Project-URL: Issues, https://github.com/Clearmetric-Labs/CatalogKit/issues
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: catalogkit-core>=0.1.0
|
|
13
|
+
Requires-Dist: catalogkit-query>=0.1.0
|
|
14
|
+
|
|
15
|
+
# catalogkit
|
|
16
|
+
|
|
17
|
+
`catalogkit` is a thin meta-package for convenience installs.
|
|
18
|
+
|
|
19
|
+
It provides no Python package and no `catalogkit` namespace files. Install it
|
|
20
|
+
when you want the currently supported CatalogKit modules together:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
python -m pip install catalogkit
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Install `catalogkit-query` directly when you only want the query tool and its
|
|
27
|
+
shared `catalogkit-core` dependency.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "catalogkit"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Convenience meta-package for installing CatalogKit modules."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "ClearMetric Labs"},
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"catalogkit-core>=0.1.0",
|
|
17
|
+
"catalogkit-query>=0.1.0",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/Clearmetric-Labs/CatalogKit"
|
|
22
|
+
Source = "https://github.com/Clearmetric-Labs/CatalogKit"
|
|
23
|
+
Issues = "https://github.com/Clearmetric-Labs/CatalogKit/issues"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
packages = []
|