glidepath 0.2.0__tar.gz → 0.2.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.
- {glidepath-0.2.0 → glidepath-0.2.1}/PKG-INFO +16 -1
- {glidepath-0.2.0 → glidepath-0.2.1}/pyproject.toml +31 -1
- {glidepath-0.2.0 → glidepath-0.2.1}/LICENSE +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/LICENSE-DATA +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/README.md +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/backtest.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/charts.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/copy.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/display.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/drawdown.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/example.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/exports.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/files.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/firstrun.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/forms.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/inspector.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/labels.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/montecarlo.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/plan.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/retirement.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/scenarios.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/shell.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/app/tables.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/annuities.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/backtest.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/comparison.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/config.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/contributions.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/engine.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/entities.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/glide.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/investments.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/money.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/montecarlo.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/pensions.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/periods.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/provenance.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/randomness.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/region.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/reporting.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/results.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/retirement.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/returns.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/scenarios.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/state_pension.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/tax.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/withdrawals.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/core/wrappers.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_128.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_16.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_24.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_256.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_32.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_48.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/icon_64.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/assets/wordmark.png +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/charts.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/forms.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/inspector.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/main.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/scenarios.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/style.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/tableview.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/gui/widgets.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/assumptions.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/decode.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/document.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/encode.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/migrations.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/persistence/values.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/py.typed +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/__init__.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/ages.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/contributions.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/data/age_rules.toml +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/data/assumptions_default.toml +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/data/returns_history.toml +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/data/tax_year_2026_27.toml +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/extension.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/loader.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/region.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/schema.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/state_pension.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/tax.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/wrappers.py +0 -0
- {glidepath-0.2.0 → glidepath-0.2.1}/src/glidepath/regions/uk/years.py +0 -0
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: glidepath
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Desktop retirement and investment planner (UK-first, region-extensible).
|
|
5
|
+
Keywords: retirement,pension,financial-planning,investment,uk,sipp,isa,monte-carlo
|
|
6
|
+
Author: James Williams
|
|
5
7
|
License-Expression: MIT AND CC-BY-NC-SA-4.0
|
|
6
8
|
License-File: LICENSE
|
|
7
9
|
License-File: LICENSE-DATA
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Environment :: Win32 (MS Windows)
|
|
12
|
+
Classifier: Environment :: X11 Applications :: Qt
|
|
13
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
14
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
8
19
|
Requires-Dist: pyside6>=6.11.1
|
|
9
20
|
Requires-Python: >=3.14
|
|
21
|
+
Project-URL: Homepage, https://williajm.github.io/glidepath/
|
|
22
|
+
Project-URL: Repository, https://github.com/williajm/glidepath
|
|
23
|
+
Project-URL: Changelog, https://github.com/williajm/glidepath/blob/main/CHANGELOG.md
|
|
24
|
+
Project-URL: Issues, https://github.com/williajm/glidepath/issues
|
|
10
25
|
Description-Content-Type: text/markdown
|
|
11
26
|
|
|
12
27
|
<p align="center">
|
|
@@ -1,17 +1,47 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "glidepath"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Desktop retirement and investment planner (UK-first, region-extensible)."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
# MIT code plus one CC BY-NC-SA 4.0 data file (returns_history.toml —
|
|
7
7
|
# scope and attribution in LICENSE-DATA).
|
|
8
8
|
license = "MIT AND CC-BY-NC-SA-4.0"
|
|
9
9
|
license-files = ["LICENSE", "LICENSE-DATA"]
|
|
10
|
+
authors = [{ name = "James Williams" }]
|
|
10
11
|
requires-python = ">=3.14"
|
|
12
|
+
keywords = [
|
|
13
|
+
"retirement",
|
|
14
|
+
"pension",
|
|
15
|
+
"financial-planning",
|
|
16
|
+
"investment",
|
|
17
|
+
"uk",
|
|
18
|
+
"sipp",
|
|
19
|
+
"isa",
|
|
20
|
+
"monte-carlo",
|
|
21
|
+
]
|
|
22
|
+
# No License :: classifier — PEP 639: the SPDX expression above is the
|
|
23
|
+
# license metadata, and mixing it with license classifiers is deprecated.
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Development Status :: 4 - Beta",
|
|
26
|
+
"Environment :: Win32 (MS Windows)",
|
|
27
|
+
"Environment :: X11 Applications :: Qt",
|
|
28
|
+
"Intended Audience :: End Users/Desktop",
|
|
29
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
30
|
+
"Operating System :: OS Independent",
|
|
31
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
32
|
+
"Programming Language :: Python :: 3.14",
|
|
33
|
+
"Topic :: Office/Business :: Financial :: Investment",
|
|
34
|
+
]
|
|
11
35
|
dependencies = [
|
|
12
36
|
"pyside6>=6.11.1",
|
|
13
37
|
]
|
|
14
38
|
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://williajm.github.io/glidepath/"
|
|
41
|
+
Repository = "https://github.com/williajm/glidepath"
|
|
42
|
+
Changelog = "https://github.com/williajm/glidepath/blob/main/CHANGELOG.md"
|
|
43
|
+
Issues = "https://github.com/williajm/glidepath/issues"
|
|
44
|
+
|
|
15
45
|
[project.gui-scripts]
|
|
16
46
|
glidepath = "glidepath.gui.main:main"
|
|
17
47
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|