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