clarema 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.
- clarema-0.0.1/PKG-INFO +33 -0
- clarema-0.0.1/README.md +18 -0
- clarema-0.0.1/pyproject.toml +28 -0
- clarema-0.0.1/setup.cfg +4 -0
- clarema-0.0.1/src/clarema/__init__.py +17 -0
- clarema-0.0.1/src/clarema.egg-info/PKG-INFO +33 -0
- clarema-0.0.1/src/clarema.egg-info/SOURCES.txt +8 -0
- clarema-0.0.1/src/clarema.egg-info/dependency_links.txt +1 -0
- clarema-0.0.1/src/clarema.egg-info/entry_points.txt +2 -0
- clarema-0.0.1/src/clarema.egg-info/top_level.txt +1 -0
clarema-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clarema
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Clarema CMS — the open-source CMS where the design seal is a validated contract. In active development; this name is reserved for the official package.
|
|
5
|
+
Author: Clarema
|
|
6
|
+
Project-URL: Homepage, https://clarema.com
|
|
7
|
+
Project-URL: Repository, https://github.com/claremacms/clarema
|
|
8
|
+
Keywords: cms,content-management,sealed-design,structured-content
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Clarema
|
|
17
|
+
|
|
18
|
+
**Clarema CMS is in active development.**
|
|
19
|
+
|
|
20
|
+
Clarema is a content management system built on one strict principle: design and
|
|
21
|
+
content are completely separate, and the separation is enforced by the system.
|
|
22
|
+
Designers produce validated design packages (hand-built, adapted from a theme, or
|
|
23
|
+
AI-generated); editors fill typed forms generated from content types; the published
|
|
24
|
+
layout cannot be broken by the people editing content — and the whole loop, from a
|
|
25
|
+
designer's template to a published on-brand page, runs with no developer in the middle.
|
|
26
|
+
|
|
27
|
+
This package name is reserved for the official Clarema package and will become the
|
|
28
|
+
supported installation path when the first public release ships.
|
|
29
|
+
|
|
30
|
+
- Website: [clarema.com](https://clarema.com)
|
|
31
|
+
- Source & progress: [github.com/claremacms](https://github.com/claremacms)
|
|
32
|
+
|
|
33
|
+
The product will ship under an open-source license, to be announced at release.
|
clarema-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Clarema
|
|
2
|
+
|
|
3
|
+
**Clarema CMS is in active development.**
|
|
4
|
+
|
|
5
|
+
Clarema is a content management system built on one strict principle: design and
|
|
6
|
+
content are completely separate, and the separation is enforced by the system.
|
|
7
|
+
Designers produce validated design packages (hand-built, adapted from a theme, or
|
|
8
|
+
AI-generated); editors fill typed forms generated from content types; the published
|
|
9
|
+
layout cannot be broken by the people editing content — and the whole loop, from a
|
|
10
|
+
designer's template to a published on-brand page, runs with no developer in the middle.
|
|
11
|
+
|
|
12
|
+
This package name is reserved for the official Clarema package and will become the
|
|
13
|
+
supported installation path when the first public release ships.
|
|
14
|
+
|
|
15
|
+
- Website: [clarema.com](https://clarema.com)
|
|
16
|
+
- Source & progress: [github.com/claremacms](https://github.com/claremacms)
|
|
17
|
+
|
|
18
|
+
The product will ship under an open-source license, to be announced at release.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "clarema"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Clarema CMS — the open-source CMS where the design seal is a validated contract. In active development; this name is reserved for the official package."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [{ name = "Clarema" }]
|
|
12
|
+
keywords = ["cms", "content-management", "sealed-design", "structured-content"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Topic :: Internet :: WWW/HTTP :: Site Management",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://clarema.com"
|
|
22
|
+
Repository = "https://github.com/claremacms/clarema"
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
clarema = "clarema:main"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.packages.find]
|
|
28
|
+
where = ["src"]
|
clarema-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Clarema CMS — in active development.
|
|
2
|
+
|
|
3
|
+
This package name is reserved for the official Clarema package.
|
|
4
|
+
Learn more at https://clarema.com
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
HOMEPAGE = "https://clarema.com"
|
|
10
|
+
REPOSITORY = "https://github.com/claremacms/clarema"
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def main() -> None:
|
|
14
|
+
print(f"Clarema CMS {__version__} — in active development.")
|
|
15
|
+
print("This package name is reserved for the official Clarema package.")
|
|
16
|
+
print(f"Learn more: {HOMEPAGE}")
|
|
17
|
+
print(f"Follow the build: {REPOSITORY}")
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clarema
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Clarema CMS — the open-source CMS where the design seal is a validated contract. In active development; this name is reserved for the official package.
|
|
5
|
+
Author: Clarema
|
|
6
|
+
Project-URL: Homepage, https://clarema.com
|
|
7
|
+
Project-URL: Repository, https://github.com/claremacms/clarema
|
|
8
|
+
Keywords: cms,content-management,sealed-design,structured-content
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Clarema
|
|
17
|
+
|
|
18
|
+
**Clarema CMS is in active development.**
|
|
19
|
+
|
|
20
|
+
Clarema is a content management system built on one strict principle: design and
|
|
21
|
+
content are completely separate, and the separation is enforced by the system.
|
|
22
|
+
Designers produce validated design packages (hand-built, adapted from a theme, or
|
|
23
|
+
AI-generated); editors fill typed forms generated from content types; the published
|
|
24
|
+
layout cannot be broken by the people editing content — and the whole loop, from a
|
|
25
|
+
designer's template to a published on-brand page, runs with no developer in the middle.
|
|
26
|
+
|
|
27
|
+
This package name is reserved for the official Clarema package and will become the
|
|
28
|
+
supported installation path when the first public release ships.
|
|
29
|
+
|
|
30
|
+
- Website: [clarema.com](https://clarema.com)
|
|
31
|
+
- Source & progress: [github.com/claremacms](https://github.com/claremacms)
|
|
32
|
+
|
|
33
|
+
The product will ship under an open-source license, to be announced at release.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clarema
|