granite-switch 0.0.1.dev1__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.
- granite_switch-0.0.1.dev1/PKG-INFO +26 -0
- granite_switch-0.0.1.dev1/README.md +15 -0
- granite_switch-0.0.1.dev1/pyproject.toml +21 -0
- granite_switch-0.0.1.dev1/setup.cfg +4 -0
- granite_switch-0.0.1.dev1/src/granite_switch/__init__.py +3 -0
- granite_switch-0.0.1.dev1/src/granite_switch.egg-info/PKG-INFO +26 -0
- granite_switch-0.0.1.dev1/src/granite_switch.egg-info/SOURCES.txt +7 -0
- granite_switch-0.0.1.dev1/src/granite_switch.egg-info/dependency_links.txt +1 -0
- granite_switch-0.0.1.dev1/src/granite_switch.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: granite-switch
|
|
3
|
+
Version: 0.0.1.dev1
|
|
4
|
+
Summary: A package for switching to Granite models
|
|
5
|
+
Author-email: Anton P <antonp@il.ibm.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# granite-switch
|
|
13
|
+
|
|
14
|
+
A package for switching to Granite models.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install granite-switch
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import granite_switch
|
|
26
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "granite-switch"
|
|
7
|
+
version = "0.0.1.dev1"
|
|
8
|
+
description = "A package for switching to Granite models"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Anton P", email = "antonp@il.ibm.com"},
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: granite-switch
|
|
3
|
+
Version: 0.0.1.dev1
|
|
4
|
+
Summary: A package for switching to Granite models
|
|
5
|
+
Author-email: Anton P <antonp@il.ibm.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# granite-switch
|
|
13
|
+
|
|
14
|
+
A package for switching to Granite models.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install granite-switch
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import granite_switch
|
|
26
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
granite_switch
|