highnoon 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.
- highnoon-0.1.0/.gitignore +12 -0
- highnoon-0.1.0/LICENSE +21 -0
- highnoon-0.1.0/PKG-INFO +52 -0
- highnoon-0.1.0/README.md +31 -0
- highnoon-0.1.0/pyproject.toml +35 -0
- highnoon-0.1.0/src/highnoon/__init__.py +11 -0
highnoon-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AltPath AI
|
|
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.
|
highnoon-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: highnoon
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Teleological Hedonic Optimization — a purpose classification framework for software and human activity
|
|
5
|
+
Project-URL: Homepage, https://github.com/altpath-ai/highnoon
|
|
6
|
+
Project-URL: Repository, https://github.com/altpath-ai/highnoon
|
|
7
|
+
Author-email: AltPath AI <hello@altpath.ai>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: classification,hedonic,optimization,purpose,teleology
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# High Noon
|
|
23
|
+
|
|
24
|
+
**Teleological Hedonic Optimization (THO)** — a purpose classification framework for software and human activity.
|
|
25
|
+
|
|
26
|
+
## What is this?
|
|
27
|
+
|
|
28
|
+
High Noon is a framework for classifying software by the **human purposes** it serves, not the technology it uses. It measures the hedonic quality of purpose fulfillment and the full cost of achievement across financial, temporal, social, and environmental dimensions.
|
|
29
|
+
|
|
30
|
+
### Core Concepts
|
|
31
|
+
|
|
32
|
+
- **HTC** (Hedonic Teleology Classification) — What human purpose does this software serve, and at what quality?
|
|
33
|
+
- **HQC** (Hedonic Quality Cost) — What does it cost to achieve that purpose, across every dimension?
|
|
34
|
+
- **HQCM** (Hedonic Quality Cost Modifier) — How does the software change each cost, for whom, and when?
|
|
35
|
+
- **HTA** (Hedonic Teleology Assessment) — The evaluation process that produces HTCs and HQCs
|
|
36
|
+
- **TCS** (Teleological Classification System) — The taxonomy of human purposes, grounded in empirical data
|
|
37
|
+
|
|
38
|
+
### Grounded in empirical research
|
|
39
|
+
|
|
40
|
+
The classification system is built on validated federal and academic taxonomies:
|
|
41
|
+
|
|
42
|
+
- **ATUS** (American Time Use Survey) — BLS classification of how humans spend time
|
|
43
|
+
- **MIT Living Wage Calculator** — Essential human needs and expenditure categories
|
|
44
|
+
- **BLS CPI** — Hedonic quality adjustment methodology for measuring value
|
|
45
|
+
|
|
46
|
+
## Status
|
|
47
|
+
|
|
48
|
+
Pre-alpha. The framework is under active conceptual development.
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
MIT
|
highnoon-0.1.0/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# High Noon
|
|
2
|
+
|
|
3
|
+
**Teleological Hedonic Optimization (THO)** — a purpose classification framework for software and human activity.
|
|
4
|
+
|
|
5
|
+
## What is this?
|
|
6
|
+
|
|
7
|
+
High Noon is a framework for classifying software by the **human purposes** it serves, not the technology it uses. It measures the hedonic quality of purpose fulfillment and the full cost of achievement across financial, temporal, social, and environmental dimensions.
|
|
8
|
+
|
|
9
|
+
### Core Concepts
|
|
10
|
+
|
|
11
|
+
- **HTC** (Hedonic Teleology Classification) — What human purpose does this software serve, and at what quality?
|
|
12
|
+
- **HQC** (Hedonic Quality Cost) — What does it cost to achieve that purpose, across every dimension?
|
|
13
|
+
- **HQCM** (Hedonic Quality Cost Modifier) — How does the software change each cost, for whom, and when?
|
|
14
|
+
- **HTA** (Hedonic Teleology Assessment) — The evaluation process that produces HTCs and HQCs
|
|
15
|
+
- **TCS** (Teleological Classification System) — The taxonomy of human purposes, grounded in empirical data
|
|
16
|
+
|
|
17
|
+
### Grounded in empirical research
|
|
18
|
+
|
|
19
|
+
The classification system is built on validated federal and academic taxonomies:
|
|
20
|
+
|
|
21
|
+
- **ATUS** (American Time Use Survey) — BLS classification of how humans spend time
|
|
22
|
+
- **MIT Living Wage Calculator** — Essential human needs and expenditure categories
|
|
23
|
+
- **BLS CPI** — Hedonic quality adjustment methodology for measuring value
|
|
24
|
+
|
|
25
|
+
## Status
|
|
26
|
+
|
|
27
|
+
Pre-alpha. The framework is under active conceptual development.
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "highnoon"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Teleological Hedonic Optimization — a purpose classification framework for software and human activity"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "AltPath AI", email = "hello@altpath.ai" },
|
|
14
|
+
]
|
|
15
|
+
keywords = [
|
|
16
|
+
"teleology",
|
|
17
|
+
"hedonic",
|
|
18
|
+
"optimization",
|
|
19
|
+
"purpose",
|
|
20
|
+
"classification",
|
|
21
|
+
]
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
24
|
+
"Intended Audience :: Developers",
|
|
25
|
+
"License :: OSI Approved :: MIT License",
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Programming Language :: Python :: 3.10",
|
|
28
|
+
"Programming Language :: Python :: 3.11",
|
|
29
|
+
"Programming Language :: Python :: 3.12",
|
|
30
|
+
"Topic :: Software Development :: Libraries",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/altpath-ai/highnoon"
|
|
35
|
+
Repository = "https://github.com/altpath-ai/highnoon"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""
|
|
2
|
+
High Noon — Teleological Hedonic Optimization
|
|
3
|
+
|
|
4
|
+
A purpose classification framework for software and human activity.
|
|
5
|
+
Measures hedonic quality of purpose fulfillment and cost of achievement,
|
|
6
|
+
grounded in BLS, ATUS, and MIT Living Wage empirical taxonomies.
|
|
7
|
+
|
|
8
|
+
https://github.com/altpath-ai/highnoon
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.1.0"
|