algothesis 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,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: algothesis
3
+ Version: 0.0.1
4
+ Summary: Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms.
5
+ Author: camgitt
6
+ License: MIT
7
+ Project-URL: Homepage, https://algothesis.ai
8
+ Project-URL: Repository, https://github.com/algothesis/algothesis
9
+ Keywords: algo-trading,catalyst,trading,backtesting,finance,ai
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Financial and Insurance Industry
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Office/Business :: Financial :: Investment
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # AlgoThesis
19
+
20
+ Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms.
21
+
22
+ Coming soon. Visit [algothesis.ai](https://algothesis.ai) for early access.
@@ -0,0 +1,5 @@
1
+ # AlgoThesis
2
+
3
+ Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms.
4
+
5
+ Coming soon. Visit [algothesis.ai](https://algothesis.ai) for early access.
@@ -0,0 +1,2 @@
1
+ """AlgoThesis — catalyst-aware algo trading engine."""
2
+ __version__ = "0.0.1"
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: algothesis
3
+ Version: 0.0.1
4
+ Summary: Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms.
5
+ Author: camgitt
6
+ License: MIT
7
+ Project-URL: Homepage, https://algothesis.ai
8
+ Project-URL: Repository, https://github.com/algothesis/algothesis
9
+ Keywords: algo-trading,catalyst,trading,backtesting,finance,ai
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Financial and Insurance Industry
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Office/Business :: Financial :: Investment
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # AlgoThesis
19
+
20
+ Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms.
21
+
22
+ Coming soon. Visit [algothesis.ai](https://algothesis.ai) for early access.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ algothesis/__init__.py
4
+ algothesis.egg-info/PKG-INFO
5
+ algothesis.egg-info/SOURCES.txt
6
+ algothesis.egg-info/dependency_links.txt
7
+ algothesis.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ algothesis
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "algothesis"
7
+ version = "0.0.1"
8
+ description = "Catalyst-aware algo trading engine. Turn plain-English investment theses into executable trading algorithms."
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "camgitt"}]
12
+ keywords = ["algo-trading", "catalyst", "trading", "backtesting", "finance", "ai"]
13
+ classifiers = [
14
+ "Development Status :: 2 - Pre-Alpha",
15
+ "Intended Audience :: Financial and Insurance Industry",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Office/Business :: Financial :: Investment",
19
+ ]
20
+ requires-python = ">=3.10"
21
+
22
+ [project.urls]
23
+ Homepage = "https://algothesis.ai"
24
+ Repository = "https://github.com/algothesis/algothesis"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+