altpath 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.
- altpath-0.1.0/.gitignore +12 -0
- altpath-0.1.0/PKG-INFO +34 -0
- altpath-0.1.0/README.md +15 -0
- altpath-0.1.0/pyproject.toml +35 -0
- altpath-0.1.0/src/altpath/__init__.py +14 -0
altpath-0.1.0/.gitignore
ADDED
altpath-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: altpath
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Open-source personal hedonic life assessment — discover your optimal path across 10 life domains
|
|
5
|
+
Project-URL: Homepage, https://altpath.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/altpath-ai/highnoon
|
|
7
|
+
Author-email: AltPath AI <hello@altpath.ai>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: assessment,hedonics,life-design,quality-of-life,self-discovery,well-being
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# AltPath
|
|
21
|
+
|
|
22
|
+
**Open-source personal hedonic life assessment.**
|
|
23
|
+
|
|
24
|
+
Evaluate your quality of life across 10 hedonic domains. Identify where you're thriving, where you're deficient, and discover tools that serve your actual human purposes.
|
|
25
|
+
|
|
26
|
+
Part of the [AltPath AI](https://altpath.ai) ecosystem.
|
|
27
|
+
|
|
28
|
+
## Status
|
|
29
|
+
|
|
30
|
+
Pre-alpha. Under active development.
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
|
|
34
|
+
MIT
|
altpath-0.1.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# AltPath
|
|
2
|
+
|
|
3
|
+
**Open-source personal hedonic life assessment.**
|
|
4
|
+
|
|
5
|
+
Evaluate your quality of life across 10 hedonic domains. Identify where you're thriving, where you're deficient, and discover tools that serve your actual human purposes.
|
|
6
|
+
|
|
7
|
+
Part of the [AltPath AI](https://altpath.ai) ecosystem.
|
|
8
|
+
|
|
9
|
+
## Status
|
|
10
|
+
|
|
11
|
+
Pre-alpha. Under active development.
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
MIT
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "altpath"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Open-source personal hedonic life assessment — discover your optimal path across 10 life domains"
|
|
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
|
+
"life-design",
|
|
17
|
+
"assessment",
|
|
18
|
+
"hedonics",
|
|
19
|
+
"quality-of-life",
|
|
20
|
+
"self-discovery",
|
|
21
|
+
"well-being",
|
|
22
|
+
]
|
|
23
|
+
classifiers = [
|
|
24
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"License :: OSI Approved :: MIT License",
|
|
27
|
+
"Programming Language :: Python :: 3",
|
|
28
|
+
"Programming Language :: Python :: 3.10",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Programming Language :: Python :: 3.12",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://altpath.ai"
|
|
35
|
+
Repository = "https://github.com/altpath-ai/highnoon"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
AltPath — Open-source personal hedonic life assessment.
|
|
3
|
+
|
|
4
|
+
Evaluate your quality of life across 10 hedonic domains.
|
|
5
|
+
Identify deficits, discover your optimal path, and connect
|
|
6
|
+
to tools that serve your actual human purposes.
|
|
7
|
+
|
|
8
|
+
Uses the Hedonics classification system for domain taxonomy.
|
|
9
|
+
Part of the AltPath AI ecosystem: https://altpath.ai
|
|
10
|
+
|
|
11
|
+
https://github.com/altpath-ai/highnoon
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "0.1.0"
|