terlina 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.
- terlina-0.0.1/PKG-INFO +23 -0
- terlina-0.0.1/README.md +12 -0
- terlina-0.0.1/pyproject.toml +19 -0
- terlina-0.0.1/terlina/__init__.py +1 -0
terlina-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: terlina
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A workshop kept out of the way, where the building happens quietly.
|
|
5
|
+
Project-URL: Homepage, https://terlina.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/terlina-dev/terlina
|
|
7
|
+
Author: Lee Hancock
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Terlina
|
|
13
|
+
|
|
14
|
+
> A workshop kept out of the way, where the building happens quietly.
|
|
15
|
+
|
|
16
|
+
Terlina is early, and intentionally so. It's being assembled in small,
|
|
17
|
+
deliberate pieces — architecture first, in the open — with its shape
|
|
18
|
+
revealed as each part earns its place.
|
|
19
|
+
|
|
20
|
+
There isn't much to see yet. That's on purpose.
|
|
21
|
+
|
|
22
|
+
**Status:** active development · pre-release
|
|
23
|
+
**License:** Apache-2.0
|
terlina-0.0.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Terlina
|
|
2
|
+
|
|
3
|
+
> A workshop kept out of the way, where the building happens quietly.
|
|
4
|
+
|
|
5
|
+
Terlina is early, and intentionally so. It's being assembled in small,
|
|
6
|
+
deliberate pieces — architecture first, in the open — with its shape
|
|
7
|
+
revealed as each part earns its place.
|
|
8
|
+
|
|
9
|
+
There isn't much to see yet. That's on purpose.
|
|
10
|
+
|
|
11
|
+
**Status:** active development · pre-release
|
|
12
|
+
**License:** Apache-2.0
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "terlina"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A workshop kept out of the way, where the building happens quietly."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Lee Hancock" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://terlina.dev"
|
|
16
|
+
Repository = "https://github.com/terlina-dev/terlina"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["terlina"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|