scelo 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.
- scelo-0.1.0/.gitignore +79 -0
- scelo-0.1.0/LICENSE +662 -0
- scelo-0.1.0/PKG-INFO +908 -0
- scelo-0.1.0/README.md +185 -0
- scelo-0.1.0/pyproject.toml +70 -0
- scelo-0.1.0/src/scelo/__init__.py +47 -0
- scelo-0.1.0/src/scelo/_alias.py +121 -0
- scelo-0.1.0/src/scelo/_audit.py +137 -0
- scelo-0.1.0/src/scelo/_table.py +148 -0
- scelo-0.1.0/src/scelo/_version.py +7 -0
- scelo-0.1.0/src/scelo/accessor.py +59 -0
- scelo-0.1.0/src/scelo/clean.py +1303 -0
- scelo-0.1.0/src/scelo/cli.py +86 -0
- scelo-0.1.0/src/scelo/climate.py +104 -0
- scelo-0.1.0/src/scelo/combine.py +227 -0
- scelo-0.1.0/src/scelo/data/claims.csv +80 -0
- scelo-0.1.0/src/scelo/data/climate.csv +31 -0
- scelo-0.1.0/src/scelo/data/dirty.csv +54 -0
- scelo-0.1.0/src/scelo/data/lifelib-mp.csv +101 -0
- scelo-0.1.0/src/scelo/data/wmtr-scenarios.csv +13 -0
- scelo-0.1.0/src/scelo/data/workspace-demo.csv +2001 -0
- scelo-0.1.0/src/scelo/fairness.py +131 -0
- scelo-0.1.0/src/scelo/finance.py +407 -0
- scelo-0.1.0/src/scelo/hard.py +214 -0
- scelo-0.1.0/src/scelo/io.py +308 -0
- scelo-0.1.0/src/scelo/life.py +950 -0
- scelo-0.1.0/src/scelo/lifelib.py +191 -0
- scelo-0.1.0/src/scelo/pipelines.py +128 -0
- scelo-0.1.0/src/scelo/pricing.py +440 -0
- scelo-0.1.0/src/scelo/profile.py +406 -0
- scelo-0.1.0/src/scelo/reserving.py +617 -0
- scelo-0.1.0/src/scelo/risk.py +561 -0
- scelo-0.1.0/src/scelo/swarm.py +311 -0
- scelo-0.1.0/src/scelo/viz.py +425 -0
- scelo-0.1.0/src/scelo/wmtr.py +501 -0
- scelo-0.1.0/src/scelo/workspace.py +166 -0
- scelo-0.1.0/tests/conftest.py +42 -0
- scelo-0.1.0/tests/make_golden.py +152 -0
- scelo-0.1.0/tests/test_clean.py +157 -0
- scelo-0.1.0/tests/test_finance_risk.py +111 -0
- scelo-0.1.0/tests/test_hard_misc.py +126 -0
- scelo-0.1.0/tests/test_io_profile.py +91 -0
- scelo-0.1.0/tests/test_life.py +166 -0
- scelo-0.1.0/tests/test_pricing_fairness.py +87 -0
- scelo-0.1.0/tests/test_reserving.py +74 -0
- scelo-0.1.0/tests/test_viz.py +49 -0
- scelo-0.1.0/tests/test_wmtr_swarm.py +93 -0
- scelo-0.1.0/tests/wmtr_fixture.json +1 -0
scelo-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# Build output
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
*.tsbuildinfo
|
|
8
|
+
.vite/
|
|
9
|
+
|
|
10
|
+
# Electron-builder staging
|
|
11
|
+
apps/scelo-ide/resources/renderer/
|
|
12
|
+
apps/scelo-ide/resources/runtime/
|
|
13
|
+
# Bundled swarm (compiled server + built client) — regenerated by
|
|
14
|
+
# apps/scelo-ide/scripts/bundle-swarm.sh
|
|
15
|
+
apps/scelo-ide/resources/swarm/
|
|
16
|
+
|
|
17
|
+
# OS junk
|
|
18
|
+
.DS_Store
|
|
19
|
+
Thumbs.db
|
|
20
|
+
|
|
21
|
+
# Editor scratch
|
|
22
|
+
.vscode/
|
|
23
|
+
.idea/
|
|
24
|
+
*.swp
|
|
25
|
+
|
|
26
|
+
# IA runtime state
|
|
27
|
+
.ia/
|
|
28
|
+
.ia-state/
|
|
29
|
+
|
|
30
|
+
# Local env
|
|
31
|
+
.env
|
|
32
|
+
.env.local
|
|
33
|
+
.env.*.local
|
|
34
|
+
|
|
35
|
+
# Test artefacts
|
|
36
|
+
coverage/
|
|
37
|
+
playwright-report/
|
|
38
|
+
test-results/
|
|
39
|
+
|
|
40
|
+
# Private assets submodule (kept local; lives in a private repo)
|
|
41
|
+
marketing/
|
|
42
|
+
|
|
43
|
+
# Unreal Engine build output. The local SceloHost / SceloAtlas trees carry
|
|
44
|
+
# ~350MB of these, and individual CachedAssetRegistry blobs exceed GitHub's
|
|
45
|
+
# 100MB hard limit. Source (Source/, Config/, Content/, *.uproject) is not
|
|
46
|
+
# ignored, so a UE project can still be committed deliberately.
|
|
47
|
+
Binaries/
|
|
48
|
+
Intermediate/
|
|
49
|
+
DerivedDataCache/
|
|
50
|
+
Saved/
|
|
51
|
+
.vs/
|
|
52
|
+
*.VC.db
|
|
53
|
+
*.opensdf
|
|
54
|
+
*.sdf
|
|
55
|
+
|
|
56
|
+
# Separate project with its own repo and history
|
|
57
|
+
# (github.com/intelligentactuaries/soa-county-mortality), checked out here for
|
|
58
|
+
# convenience. ~4GB of raw data; staging it would embed a broken gitlink.
|
|
59
|
+
forSOA/
|
|
60
|
+
|
|
61
|
+
# Python (packages/scelo-py)
|
|
62
|
+
__pycache__/
|
|
63
|
+
*.pyc
|
|
64
|
+
*.egg-info/
|
|
65
|
+
packages/scelo-py/build/
|
|
66
|
+
packages/scelo-py/dist/
|
|
67
|
+
.pytest_cache/
|
|
68
|
+
.venv/
|
|
69
|
+
|
|
70
|
+
# R (packages/scelo-r)
|
|
71
|
+
.Rhistory
|
|
72
|
+
.RData
|
|
73
|
+
.Rproj.user/
|
|
74
|
+
packages/*.Rcheck/
|
|
75
|
+
packages/scelo-r/*.Rcheck/
|
|
76
|
+
packages/scelo_*.tar.gz
|
|
77
|
+
packages/scelo-r/*.tar.gz
|
|
78
|
+
packages/scelo-r/doc/
|
|
79
|
+
packages/scelo-r/Meta/
|