cambium 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.
cambium-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sidrat Research
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
cambium-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: cambium
3
+ Version: 0.1.0
4
+ Summary: A light touch markdown static site generator
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
+ Author: Sidrat Research
8
+ Author-email: info@sidratresearch.com
9
+ Requires-Python: >=3.11
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
13
+ Classifier: Topic :: Text Processing :: Markup :: Markdown
14
+ Classifier: Topic :: Text Processing :: Markup :: HTML
15
+ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Dist: marko (>=2.2.2,<3.0.0)
22
+ Requires-Dist: pyyaml (>=6.0.3,<7.0.0)
23
+ Requires-Dist: typer (>=0.25.1,<0.26.0)
24
+ Project-URL: Homepage, https://github.com/sidratresearch/cambium
25
+ Project-URL: Issues, https://github.com/sidratresearch/cambium/issues
26
+ Description-Content-Type: text/markdown
27
+
28
+ # cambium
29
+ A light touch markdown Static Site Generator
30
+
@@ -0,0 +1,2 @@
1
+ # cambium
2
+ A light touch markdown Static Site Generator
@@ -0,0 +1,49 @@
1
+ [project]
2
+ name = "cambium"
3
+ version = "0.1.0"
4
+ description = "A light touch markdown static site generator"
5
+ authors = [
6
+ { name = "Sidrat Research", email = "info@sidratresearch.com" },
7
+ { name = "Mubdi Rahman", email = "mubdi@sidratresearch.com" },
8
+ { name = "Tai Withers", email = "tai@sidratresearch.com" },
9
+ { name = "Hansen Jiang", email = "tai@sidratresearch.com" },
10
+ { name = "Jennifer Scora", email = "jscora@sidratresearch.com" },
11
+ ]
12
+ license = "MIT"
13
+ license-files = ["LICEN[CS]E*"]
14
+ readme = "README.md"
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Topic :: Internet :: WWW/HTTP :: Site Management",
19
+ "Topic :: Text Processing :: Markup :: Markdown",
20
+ "Topic :: Text Processing :: Markup :: HTML",
21
+ "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
22
+ "Operating System :: OS Independent",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14",
27
+ ]
28
+ requires-python = ">=3.11"
29
+ dependencies = [
30
+ "marko (>=2.2.2,<3.0.0)",
31
+ "pyyaml (>=6.0.3,<7.0.0)",
32
+ "typer (>=0.25.1,<0.26.0)",
33
+ ]
34
+
35
+ [project.urls]
36
+ Homepage = "https://github.com/sidratresearch/cambium"
37
+ Issues = "https://github.com/sidratresearch/cambium/issues"
38
+
39
+ [dependency-groups]
40
+ dev = [
41
+ "black (>=26.3.1,<27.0.0)",
42
+ "pytest (>=9.0.3,<10.0.0)",
43
+ "tox (>=4.53.1,<5.0.0)",
44
+ ]
45
+
46
+
47
+ [build-system]
48
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
49
+ build-backend = "poetry.core.masonry.api"
File without changes