wato 0.0.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.
- wato-0.0.0/.gitignore +33 -0
- wato-0.0.0/PKG-INFO +20 -0
- wato-0.0.0/README.md +5 -0
- wato-0.0.0/pyproject.toml +27 -0
- wato-0.0.0/src/wato/__init__.py +3 -0
wato-0.0.0/.gitignore
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
.venv/
|
|
7
|
+
.ruff_cache/
|
|
8
|
+
.pytest_cache/
|
|
9
|
+
.mypy_cache/
|
|
10
|
+
|
|
11
|
+
# Go
|
|
12
|
+
/wato-ingest/server
|
|
13
|
+
|
|
14
|
+
# Node
|
|
15
|
+
node_modules/
|
|
16
|
+
|
|
17
|
+
# OS
|
|
18
|
+
.DS_Store
|
|
19
|
+
Thumbs.db
|
|
20
|
+
|
|
21
|
+
# IDE
|
|
22
|
+
.idea/
|
|
23
|
+
.vscode/
|
|
24
|
+
*.swp
|
|
25
|
+
*.swo
|
|
26
|
+
|
|
27
|
+
# Env
|
|
28
|
+
.env
|
|
29
|
+
.env.*
|
|
30
|
+
!.env.example
|
|
31
|
+
|
|
32
|
+
# Misc
|
|
33
|
+
*.log
|
wato-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wato
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Prediction market bot runtime — paper trade and live trade strategies on Polymarket & Kalshi
|
|
5
|
+
Project-URL: Homepage, https://wato.sh
|
|
6
|
+
Author: Wato, Inc.
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: bot,kalshi,paper-trading,polymarket,prediction-markets,trading
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.11
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# wato-sdk
|
|
17
|
+
|
|
18
|
+
Prediction market bot runtime. paper trade and live trade strategies on Polymarket & Kalshi.
|
|
19
|
+
|
|
20
|
+
Coming soon. See [wato.sh](https://wato.sh) for more info.
|
wato-0.0.0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wato"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Prediction market bot runtime — paper trade and live trade strategies on Polymarket & Kalshi"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Wato, Inc." },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["prediction-markets", "trading", "polymarket", "kalshi", "bot", "paper-trading"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://wato.sh"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/wato"]
|