chaski 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.
- chaski-0.0.1/PKG-INFO +19 -0
- chaski-0.0.1/README.md +8 -0
- chaski-0.0.1/chaski.egg-info/PKG-INFO +19 -0
- chaski-0.0.1/chaski.egg-info/SOURCES.txt +6 -0
- chaski-0.0.1/chaski.egg-info/dependency_links.txt +1 -0
- chaski-0.0.1/chaski.egg-info/top_level.txt +1 -0
- chaski-0.0.1/pyproject.toml +19 -0
- chaski-0.0.1/setup.cfg +4 -0
chaski-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chaski
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for chaski, the Python SDK for Colca. Releases are on GitHub for now.
|
|
5
|
+
Author: Colca contributors
|
|
6
|
+
License: FSL-1.1-ALv2
|
|
7
|
+
Project-URL: Source, https://github.com/alpamayo-solutions/chaski
|
|
8
|
+
Project-URL: Releases, https://github.com/alpamayo-solutions/chaski/releases
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# chaski
|
|
13
|
+
|
|
14
|
+
This name is reserved for chaski, the Python SDK for
|
|
15
|
+
[Colca](https://github.com/alpamayo-solutions/colca). This placeholder contains
|
|
16
|
+
no code.
|
|
17
|
+
|
|
18
|
+
Until chaski is published here, install it from the
|
|
19
|
+
[GitHub releases](https://github.com/alpamayo-solutions/chaski/releases).
|
chaski-0.0.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# chaski
|
|
2
|
+
|
|
3
|
+
This name is reserved for chaski, the Python SDK for
|
|
4
|
+
[Colca](https://github.com/alpamayo-solutions/colca). This placeholder contains
|
|
5
|
+
no code.
|
|
6
|
+
|
|
7
|
+
Until chaski is published here, install it from the
|
|
8
|
+
[GitHub releases](https://github.com/alpamayo-solutions/chaski/releases).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chaski
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for chaski, the Python SDK for Colca. Releases are on GitHub for now.
|
|
5
|
+
Author: Colca contributors
|
|
6
|
+
License: FSL-1.1-ALv2
|
|
7
|
+
Project-URL: Source, https://github.com/alpamayo-solutions/chaski
|
|
8
|
+
Project-URL: Releases, https://github.com/alpamayo-solutions/chaski/releases
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# chaski
|
|
13
|
+
|
|
14
|
+
This name is reserved for chaski, the Python SDK for
|
|
15
|
+
[Colca](https://github.com/alpamayo-solutions/colca). This placeholder contains
|
|
16
|
+
no code.
|
|
17
|
+
|
|
18
|
+
Until chaski is published here, install it from the
|
|
19
|
+
[GitHub releases](https://github.com/alpamayo-solutions/chaski/releases).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "chaski"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved for chaski, the Python SDK for Colca. Releases are on GitHub for now."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "FSL-1.1-ALv2" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "Colca contributors" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Source = "https://github.com/alpamayo-solutions/chaski"
|
|
16
|
+
Releases = "https://github.com/alpamayo-solutions/chaski/releases"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
packages = []
|
chaski-0.0.1/setup.cfg
ADDED