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.
- algothesis-0.0.1/PKG-INFO +22 -0
- algothesis-0.0.1/README.md +5 -0
- algothesis-0.0.1/algothesis/__init__.py +2 -0
- algothesis-0.0.1/algothesis.egg-info/PKG-INFO +22 -0
- algothesis-0.0.1/algothesis.egg-info/SOURCES.txt +7 -0
- algothesis-0.0.1/algothesis.egg-info/dependency_links.txt +1 -0
- algothesis-0.0.1/algothesis.egg-info/top_level.txt +1 -0
- algothesis-0.0.1/pyproject.toml +24 -0
- algothesis-0.0.1/setup.cfg +4 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -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"
|