doxa-research 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,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: doxa-research
3
+ Version: 0.0.1
4
+ Summary: Deep research CLI tool pulling from top deep-research APIs: OpenAI, Perplexity, and Gemini.
5
+ Keywords: deep-research,cli,openai,perplexity,gemini,research,llm
6
+ Author: Steve Morin
7
+ Author-email: Steve Morin <steve.morin@gmail.com>
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown
18
+
19
+ # doxa-research
20
+
21
+ A deep-research CLI tool that pulls from the top deep-research APIs:
22
+ OpenAI, Perplexity, and Gemini.
23
+
24
+ > **Status — pre-release placeholder.** The `doxa-research` name is
25
+ > reserved on PyPI for this project. Current versions ship only a no-op
26
+ > entry point while the full CLI is under development.
27
+
28
+ ## Install
29
+
30
+ ```bash
31
+ pip install doxa-research
32
+ ```
33
+
34
+ ## Usage (current placeholder)
35
+
36
+ ```bash
37
+ $ doxa
38
+ Hello from doxa-research!
39
+ ```
40
+
41
+ The real CLI surface — running deep-research queries against OpenAI,
42
+ Perplexity, and Gemini and merging the results — is forthcoming.
43
+
44
+ ## Names
45
+
46
+ | Surface | Name |
47
+ |---|---|
48
+ | PyPI distribution | `doxa-research` |
49
+ | Python import | `doxa_research` |
50
+ | CLI command | `doxa` |
51
+
52
+ ## Roadmap
53
+
54
+ - [ ] Provider adapters: OpenAI deep research, Perplexity, Gemini
55
+ - [ ] Unified result schema and citation tracking
56
+ - [ ] CLI: query, compare, export
57
+ - [ ] Configurable provider selection and API key management
58
+
59
+ ## Metadata
60
+
61
+ - **Maintainer**: Steve Morin <steve.morin@gmail.com>
62
+ - **License**: MIT
@@ -0,0 +1,44 @@
1
+ # doxa-research
2
+
3
+ A deep-research CLI tool that pulls from the top deep-research APIs:
4
+ OpenAI, Perplexity, and Gemini.
5
+
6
+ > **Status — pre-release placeholder.** The `doxa-research` name is
7
+ > reserved on PyPI for this project. Current versions ship only a no-op
8
+ > entry point while the full CLI is under development.
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ pip install doxa-research
14
+ ```
15
+
16
+ ## Usage (current placeholder)
17
+
18
+ ```bash
19
+ $ doxa
20
+ Hello from doxa-research!
21
+ ```
22
+
23
+ The real CLI surface — running deep-research queries against OpenAI,
24
+ Perplexity, and Gemini and merging the results — is forthcoming.
25
+
26
+ ## Names
27
+
28
+ | Surface | Name |
29
+ |---|---|
30
+ | PyPI distribution | `doxa-research` |
31
+ | Python import | `doxa_research` |
32
+ | CLI command | `doxa` |
33
+
34
+ ## Roadmap
35
+
36
+ - [ ] Provider adapters: OpenAI deep research, Perplexity, Gemini
37
+ - [ ] Unified result schema and citation tracking
38
+ - [ ] CLI: query, compare, export
39
+ - [ ] Configurable provider selection and API key management
40
+
41
+ ## Metadata
42
+
43
+ - **Maintainer**: Steve Morin <steve.morin@gmail.com>
44
+ - **License**: MIT
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "doxa-research"
3
+ version = "0.0.1"
4
+ description = "Deep research CLI tool pulling from top deep-research APIs: OpenAI, Perplexity, and Gemini."
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ authors = [
8
+ { name = "Steve Morin", email = "steve.morin@gmail.com" }
9
+ ]
10
+ requires-python = ">=3.9"
11
+ dependencies = []
12
+ keywords = ["deep-research", "cli", "openai", "perplexity", "gemini", "research", "llm"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Environment :: Console",
16
+ "Intended Audience :: Developers",
17
+ "Intended Audience :: Science/Research",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
21
+ ]
22
+
23
+ [project.scripts]
24
+ doxa = "doxa_research:main"
25
+
26
+ [tool.uv.build-backend]
27
+ module-name = "doxa_research"
28
+
29
+ [build-system]
30
+ requires = ["uv_build>=0.10.5,<0.11.0"]
31
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from doxa-research!")