polysim-sdk 0.2.1__tar.gz → 0.2.2__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.
@@ -0,0 +1,148 @@
1
+ # -----------------------
2
+ # GENERAL / OS / IDE
3
+ # -----------------------
4
+ .DS_Store
5
+ Thumbs.db
6
+ ehthumbs.db
7
+ # Claude Code runtime artifacts (settings.json is committed; runtime
8
+ # state like the scheduler lock and local overrides are not).
9
+ .claude/scheduled_tasks.lock
10
+ .claude/settings.local.json
11
+ # ignore everything in .vscode/ except the committed MCP + extension recommendations
12
+ .vscode/*
13
+ !.vscode/mcp.json
14
+ !.vscode/extensions.json
15
+ .idea/
16
+ *.log
17
+ *.suo
18
+ *.ntvs*
19
+ *.njsproj
20
+ *.sln
21
+ *.sw?
22
+
23
+ # -----------------------
24
+ # ENVIRONMENT SECRETS (CRITICAL)
25
+ # -----------------------
26
+ .env
27
+ .env.local
28
+ .env.*
29
+ !.env.example
30
+ !.env.defaults
31
+ !.env.defaults.*
32
+
33
+ # -----------------------
34
+ # PYTHON / BACKEND
35
+ # -----------------------
36
+ __pycache__/
37
+ *.py[cod]
38
+ *$py.class
39
+ *.manifest
40
+ *.spec
41
+
42
+ # Virtual Environments
43
+ venv/
44
+ env/
45
+ .venv/
46
+ pip-wheel-metadata/
47
+
48
+ # Testing & Coverage
49
+ .pytest_cache/
50
+ .coverage
51
+ htmlcov/
52
+
53
+ # -----------------------
54
+ # NODE / FRONTEND
55
+ # -----------------------
56
+ node_modules/
57
+ npm-debug.log*
58
+ yarn-debug.log*
59
+ yarn-error.log*
60
+ pnpm-debug.log*
61
+
62
+ # Build Outputs
63
+ dist/
64
+ dist-ssr/
65
+ build/
66
+ .next/
67
+ out/
68
+
69
+ # Cache
70
+ .cache/
71
+ .parcel-cache/
72
+ .vite/
73
+ .turbo/
74
+
75
+ # Misc Frontend
76
+ multi_replacements.json
77
+
78
+ context/
79
+
80
+ # TypeScript Build Info
81
+ *.tsbuildinfo
82
+
83
+
84
+ legaldata.html
85
+
86
+ designs/polysim_logo
87
+
88
+ plan-hftDataTradingApi.prompt.md
89
+
90
+ .agent
91
+ .agents
92
+ .playwright-mcp/
93
+ .worktrees/
94
+
95
+ docs/reports/
96
+ supabase/
97
+ dump.rdb
98
+
99
+ # -----------------------
100
+ # LEGAL / NOTICE CAMPAIGN PER-RECIPIENT LOGS
101
+ # These contain per-recipient personal data (email + auth user_id
102
+ # paired with Resend message ids) and must never be committed.
103
+ # The hand-built archived-users suppression CSV
104
+ # (tos_notice_suppression_archived_2026_05_10.csv) is intentionally
105
+ # committed and is excluded by name.
106
+ # -----------------------
107
+ tos_notice_send_log_*.csv
108
+ tos_notice_recipients_*.csv
109
+ archive_notice_send_log_*.csv
110
+ archive_notice_recipients_*.csv
111
+ s2_launch_send_log_*.csv
112
+
113
+ # -----------------------
114
+ # CAMPAIGN RECIPIENT LISTS (scripts/maillists/)
115
+ # Real recipient lists contain operator-supplied private addresses (our own
116
+ # mailboxes + friends' personal emails) and must never be committed (PR #1965
117
+ # review). Only the *.csv.example TEMPLATES are tracked; copy a template to
118
+ # the un-suffixed name and fill it in locally at send time.
119
+ # -----------------------
120
+ scripts/maillists/*.csv
121
+ !scripts/maillists/*.csv.example
122
+
123
+ # -----------------------
124
+ # PITCHDOCS ASSETS
125
+ # -----------------------
126
+ pitchdocs/assets/png/
127
+ pitchdocs/assets/svg/
128
+
129
+ *png
130
+ *jpg
131
+ *jpeg
132
+ *.pdf
133
+ !frontend/public/logos/PolySimulator_Donation_transparent.png
134
+ .claude/worktrees/
135
+
136
+ # -----------------------
137
+ # LOCAL-ONLY WORKING FILES (not committed)
138
+ # -----------------------
139
+ # Generated cache of GitHub issues used by local tooling.
140
+ .compact-issues.json
141
+ # Local QA pass notes (contain account emails / Stripe test details).
142
+ .qa-findings.md
143
+ # Sensitive legal / business-strategy docs (incorporation, founders
144
+ # agreement, business plan, GDPR architecture). Kept local pending review;
145
+ # remove this line (or `git add -f`) when a doc is cleared for committing.
146
+ docs/legal/business-plan/
147
+ # Standalone Remotion launch-video sub-project (kept local for now).
148
+ launch-video/
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polysim-sdk
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Deprecated alias — the PolySimulator Python SDK is now published as 'polysimulator'. Installs it for you.
5
5
  Project-URL: Homepage, https://polysimulator.com
6
6
  Project-URL: Documentation, https://docs.polysimulator.com
7
- Project-URL: Repository, https://github.com/Bavariance/polysimulator
7
+ Project-URL: Repository, https://github.com/Bavariance/polysimulator-sdk
8
8
  Author: Bavariance
9
9
  License-Expression: Apache-2.0
10
10
  License-File: LICENSE
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "polysim-sdk"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Deprecated alias — the PolySimulator Python SDK is now published as 'polysimulator'. Installs it for you."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -23,8 +23,10 @@ dependencies = ["polysimulator>=0.2.0"]
23
23
  [project.urls]
24
24
  Homepage = "https://polysimulator.com"
25
25
  Documentation = "https://docs.polysimulator.com"
26
- Repository = "https://github.com/Bavariance/polysimulator"
26
+ Repository = "https://github.com/Bavariance/polysimulator-sdk"
27
27
 
28
+ # Metadata-only wheel: ships NO modules (no file conflict with `polysimulator`,
29
+ # which provides the real `polysim_sdk` / `polysim_clob_client` import packages).
28
30
  [tool.hatch.build.targets.wheel]
29
31
  bypass-selection = true
30
32
 
File without changes
File without changes
File without changes