polysimulator 0.0.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.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: polysimulator
3
+ Version: 0.0.1
4
+ Summary: PolySimulator — paper-trading API for prediction markets (SDK placeholder — full release coming soon)
5
+ Author-email: PolySimulator <admin@polysimulator.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://polysimulator.com
8
+ Project-URL: Documentation, https://docs.polysimulator.com
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
+ Classifier: Topic :: Office/Business :: Financial :: Investment
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # polysimulator
18
+
19
+ **This is a placeholder release.** The official PolySimulator Python SDK is in final
20
+ preparation and will be published under this name soon.
21
+
22
+ PolySimulator is a paper-trading simulator for prediction markets with a
23
+ Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
24
+ to use directly:
25
+
26
+ - Docs: https://docs.polysimulator.com
27
+ - Quickstart: https://docs.polysimulator.com/quickstart
28
+ - Machine-readable reference: https://api.polysimulator.com/llms.txt
29
+
30
+ Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
31
+ name ahead of the SDK release. If you have questions: https://polysimulator.com
@@ -0,0 +1,15 @@
1
+ # polysimulator
2
+
3
+ **This is a placeholder release.** The official PolySimulator Python SDK is in final
4
+ preparation and will be published under this name soon.
5
+
6
+ PolySimulator is a paper-trading simulator for prediction markets with a
7
+ Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
8
+ to use directly:
9
+
10
+ - Docs: https://docs.polysimulator.com
11
+ - Quickstart: https://docs.polysimulator.com/quickstart
12
+ - Machine-readable reference: https://api.polysimulator.com/llms.txt
13
+
14
+ Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
15
+ name ahead of the SDK release. If you have questions: https://polysimulator.com
@@ -0,0 +1,10 @@
1
+ """PolySimulator SDK placeholder.
2
+
3
+ The official SDK has not shipped yet. The PolySimulator API is plain REST —
4
+ see https://docs.polysimulator.com/quickstart to start now.
5
+ """
6
+
7
+ __version__ = "0.0.1"
8
+
9
+ SDK_STATUS = "coming-soon"
10
+ DOCS_URL = "https://docs.polysimulator.com"
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: polysimulator
3
+ Version: 0.0.1
4
+ Summary: PolySimulator — paper-trading API for prediction markets (SDK placeholder — full release coming soon)
5
+ Author-email: PolySimulator <admin@polysimulator.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://polysimulator.com
8
+ Project-URL: Documentation, https://docs.polysimulator.com
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
+ Classifier: Topic :: Office/Business :: Financial :: Investment
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+
17
+ # polysimulator
18
+
19
+ **This is a placeholder release.** The official PolySimulator Python SDK is in final
20
+ preparation and will be published under this name soon.
21
+
22
+ PolySimulator is a paper-trading simulator for prediction markets with a
23
+ Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
24
+ to use directly:
25
+
26
+ - Docs: https://docs.polysimulator.com
27
+ - Quickstart: https://docs.polysimulator.com/quickstart
28
+ - Machine-readable reference: https://api.polysimulator.com/llms.txt
29
+
30
+ Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
31
+ name ahead of the SDK release. If you have questions: https://polysimulator.com
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ polysimulator/__init__.py
4
+ polysimulator.egg-info/PKG-INFO
5
+ polysimulator.egg-info/SOURCES.txt
6
+ polysimulator.egg-info/dependency_links.txt
7
+ polysimulator.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ polysimulator
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "polysimulator"
7
+ version = "0.0.1"
8
+ description = "PolySimulator — paper-trading API for prediction markets (SDK placeholder — full release coming soon)"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "PolySimulator", email = "admin@polysimulator.com"}]
12
+ requires-python = ">=3.9"
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Office/Business :: Financial :: Investment",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://polysimulator.com"
23
+ Documentation = "https://docs.polysimulator.com"
24
+
25
+ [tool.setuptools]
26
+ packages = ["polysimulator"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+