vexor 0.4.2__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.
- vexor-0.4.2/.gitignore +159 -0
- vexor-0.4.2/LICENSE +21 -0
- vexor-0.4.2/PKG-INFO +116 -0
- vexor-0.4.2/README.md +79 -0
- vexor-0.4.2/pyproject.toml +71 -0
- vexor-0.4.2/vexor/__init__.py +12 -0
- vexor-0.4.2/vexor/__main__.py +18 -0
- vexor-0.4.2/vexor/cache.py +559 -0
- vexor-0.4.2/vexor/cli.py +553 -0
- vexor-0.4.2/vexor/config.py +62 -0
- vexor-0.4.2/vexor/modes.py +81 -0
- vexor-0.4.2/vexor/providers/__init__.py +4 -0
- vexor-0.4.2/vexor/providers/gemini.py +74 -0
- vexor-0.4.2/vexor/search.py +91 -0
- vexor-0.4.2/vexor/services/__init__.py +9 -0
- vexor-0.4.2/vexor/services/cache_service.py +39 -0
- vexor-0.4.2/vexor/services/config_service.py +51 -0
- vexor-0.4.2/vexor/services/content_extract_service.py +188 -0
- vexor-0.4.2/vexor/services/index_service.py +251 -0
- vexor-0.4.2/vexor/services/search_service.py +89 -0
- vexor-0.4.2/vexor/services/system_service.py +81 -0
- vexor-0.4.2/vexor/text.py +116 -0
- vexor-0.4.2/vexor/utils.py +65 -0
vexor-0.4.2/.gitignore
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
PIPE_MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
#*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py,cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
cover/
|
|
51
|
+
|
|
52
|
+
# Translations
|
|
53
|
+
*.mo
|
|
54
|
+
*.pot
|
|
55
|
+
|
|
56
|
+
# Django stuff:
|
|
57
|
+
*.log
|
|
58
|
+
local_settings.py
|
|
59
|
+
db.sqlite3
|
|
60
|
+
db.sqlite3-journal
|
|
61
|
+
|
|
62
|
+
# Flask stuff:
|
|
63
|
+
instance/
|
|
64
|
+
.webassets-cache
|
|
65
|
+
|
|
66
|
+
# Scrapy stuff:
|
|
67
|
+
.scrapy
|
|
68
|
+
|
|
69
|
+
# Sphinx documentation
|
|
70
|
+
docs/_build/
|
|
71
|
+
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
|
|
79
|
+
# IPython
|
|
80
|
+
profile_default/
|
|
81
|
+
ipython_config.py
|
|
82
|
+
|
|
83
|
+
# pyenv
|
|
84
|
+
.python-version
|
|
85
|
+
|
|
86
|
+
# pipenv
|
|
87
|
+
Pipfile.lock
|
|
88
|
+
|
|
89
|
+
# poetry
|
|
90
|
+
poetry.lock
|
|
91
|
+
|
|
92
|
+
# pdm
|
|
93
|
+
.pdm.toml
|
|
94
|
+
|
|
95
|
+
# PEP 582
|
|
96
|
+
__pypackages__/
|
|
97
|
+
|
|
98
|
+
# Celery stuff
|
|
99
|
+
celerybeat-schedule
|
|
100
|
+
celerybeat.pid
|
|
101
|
+
|
|
102
|
+
# SageMath parsed files
|
|
103
|
+
*.sage.py
|
|
104
|
+
|
|
105
|
+
# Environments
|
|
106
|
+
.env
|
|
107
|
+
.venv
|
|
108
|
+
env/
|
|
109
|
+
venv/
|
|
110
|
+
ENV/
|
|
111
|
+
env.bak/
|
|
112
|
+
venv.bak/
|
|
113
|
+
|
|
114
|
+
# Spyder project settings
|
|
115
|
+
.spyderproject
|
|
116
|
+
.spyproject
|
|
117
|
+
|
|
118
|
+
# Rope project settings
|
|
119
|
+
.ropeproject
|
|
120
|
+
|
|
121
|
+
# mkdocs documentation
|
|
122
|
+
/site
|
|
123
|
+
|
|
124
|
+
# mypy
|
|
125
|
+
.mypy_cache/
|
|
126
|
+
.dmypy.json
|
|
127
|
+
dmypy.json
|
|
128
|
+
|
|
129
|
+
# Pyre type checker
|
|
130
|
+
.pyre/
|
|
131
|
+
|
|
132
|
+
# pytype static type analyzer
|
|
133
|
+
.pytype/
|
|
134
|
+
|
|
135
|
+
# Cython debug symbols
|
|
136
|
+
cython_debug/
|
|
137
|
+
|
|
138
|
+
# IDE specific files
|
|
139
|
+
.vscode/
|
|
140
|
+
.idea/
|
|
141
|
+
*.swp
|
|
142
|
+
*.swo
|
|
143
|
+
*~
|
|
144
|
+
.DS_Store
|
|
145
|
+
|
|
146
|
+
# SentenceTransformers cache
|
|
147
|
+
.cache/
|
|
148
|
+
sentence_transformers/
|
|
149
|
+
|
|
150
|
+
# Model cache (HuggingFace)
|
|
151
|
+
.transformers_cache/
|
|
152
|
+
models/
|
|
153
|
+
|
|
154
|
+
# Project specific
|
|
155
|
+
*.db
|
|
156
|
+
*.sqlite
|
|
157
|
+
test_data/
|
|
158
|
+
temp/
|
|
159
|
+
tmp/
|
vexor-0.4.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 ScarletKc
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
vexor-0.4.2/PKG-INFO
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vexor
|
|
3
|
+
Version: 0.4.2
|
|
4
|
+
Summary: A vector-powered CLI for semantic search over files.
|
|
5
|
+
Project-URL: Repository, https://github.com/scarletkc/vexor
|
|
6
|
+
Author: scarletkc
|
|
7
|
+
License: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: ai,cli,semantic-search,typer
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
18
|
+
Classifier: Topic :: System :: Filesystems
|
|
19
|
+
Classifier: Topic :: Text Processing :: Indexing
|
|
20
|
+
Classifier: Topic :: Utilities
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Requires-Dist: charset-normalizer>=3.3.0
|
|
23
|
+
Requires-Dist: google-genai>=0.5.0
|
|
24
|
+
Requires-Dist: numpy>=1.23.0
|
|
25
|
+
Requires-Dist: pypdf>=4.0.0
|
|
26
|
+
Requires-Dist: python-docx>=0.8.11
|
|
27
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
28
|
+
Requires-Dist: rich>=13.0.0
|
|
29
|
+
Requires-Dist: scikit-learn>=1.3.0
|
|
30
|
+
Requires-Dist: typer>=0.9.0
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: build>=1.2.1; extra == 'dev'
|
|
33
|
+
Requires-Dist: pytest-cov>=4.1; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest>=7.4; extra == 'dev'
|
|
35
|
+
Requires-Dist: twine>=5.1.1; extra == 'dev'
|
|
36
|
+
Description-Content-Type: text/markdown
|
|
37
|
+
|
|
38
|
+
<div align="center">
|
|
39
|
+
|
|
40
|
+
<img src="https://raw.githubusercontent.com/scarletkc/vexor/refs/heads/main/assets/vexor.svg" alt="Vexor" width="50%" height="auto">
|
|
41
|
+
|
|
42
|
+
# Vexor
|
|
43
|
+
|
|
44
|
+
[](https://www.python.org/downloads/)
|
|
45
|
+
[](https://pypi.org/project/vexor/)
|
|
46
|
+
[](https://github.com/scarletkc/vexor/actions/workflows/publish.yml)
|
|
47
|
+
[](https://codecov.io/github/scarletkc/vexor)
|
|
48
|
+
[](https://github.com/scarletkc/vexor/blob/main/LICENSE)
|
|
49
|
+
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
Vexor is a vector-powered CLI that searches files semantically. It uses Google GenAI's `gemini-embedding-001` model to embed files and queries, then shows matches with cosine similarity.
|
|
55
|
+
|
|
56
|
+
## Install
|
|
57
|
+
Download from [releases](https://github.com/scarletkc/vexor/releases) without python, or with:
|
|
58
|
+
```bash
|
|
59
|
+
pip install vexor # or use pipx, uv
|
|
60
|
+
```
|
|
61
|
+
The CLI entry point is `vexor`.
|
|
62
|
+
|
|
63
|
+
## Configure
|
|
64
|
+
Set the Gemini API key once and reuse it everywhere:
|
|
65
|
+
```bash
|
|
66
|
+
vexor config --set-api-key "YOUR_KEY"
|
|
67
|
+
```
|
|
68
|
+
Optional defaults:
|
|
69
|
+
```bash
|
|
70
|
+
vexor config --set-model gemini-embedding-001
|
|
71
|
+
vexor config --set-batch-size 0 # 0 = single request
|
|
72
|
+
```
|
|
73
|
+
Configuration is stored in `~/.vexor/config.json`.
|
|
74
|
+
|
|
75
|
+
Inspect or reset every cached index:
|
|
76
|
+
```bash
|
|
77
|
+
vexor config --show-index-all
|
|
78
|
+
vexor config --clear-index-all
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Workflow
|
|
82
|
+
1. **Index** the project root (includes every subdirectory):
|
|
83
|
+
```bash
|
|
84
|
+
vexor index --path ~/projects/demo --mode name --include-hidden
|
|
85
|
+
```
|
|
86
|
+
2. **Search** from anywhere, pointing to the same path:
|
|
87
|
+
```bash
|
|
88
|
+
vexor search "api client config" --path ~/projects/demo --mode name --top 5
|
|
89
|
+
```
|
|
90
|
+
Output example:
|
|
91
|
+
```
|
|
92
|
+
Vexor semantic file search results
|
|
93
|
+
──────────────────────────────────
|
|
94
|
+
# Similarity File path Preview
|
|
95
|
+
1 0.923 ./src/config_loader.py config loader entrypoint
|
|
96
|
+
2 0.871 ./src/utils/config_parse.py parse config helpers
|
|
97
|
+
3 0.809 ./tests/test_config_loader.py tests for config loader
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Tips:
|
|
101
|
+
- Keep one index per project root; subdirectories need separate indexes only if you explicitly run `vexor index` on them.
|
|
102
|
+
- Toggle `--no-recursive` (or `-n`) on both `index` and `search` when you only care about the current directory; recursive and non-recursive caches are stored separately.
|
|
103
|
+
- Hidden files are included only if both `index` and `search` use `--include-hidden`.
|
|
104
|
+
- Re-running `vexor index` only re-embeds files whose names changed (or were added/removed); if more than half the files differ, it automatically falls back to a full rebuild for consistency.
|
|
105
|
+
- Specify the indexing mode with `--mode`; currently `name` (file names only) and `head` (first chunk of supported text/code/PDF/DOCX/etc. files) are available, each with its own cache.
|
|
106
|
+
|
|
107
|
+
## Commands
|
|
108
|
+
| Command | Description |
|
|
109
|
+
| ------- | ----------- |
|
|
110
|
+
| `vexor index --path PATH --mode MODE [--include-hidden] [--no-recursive] [--clear/--show]` | Scans `PATH` (recursively by default), embeds content according to `MODE` (`name` or `head`), and writes a cache under `~/.vexor`. |
|
|
111
|
+
| `vexor search QUERY --path PATH --mode MODE [--top K] [--include-hidden] [--no-recursive]` | Loads the cached embeddings for `PATH` (matching the chosen mode/recursion/hidden settings), shows matches for `QUERY`. |
|
|
112
|
+
| `vexor doctor` | Checks whether the `vexor` command is available on the current `PATH`. |
|
|
113
|
+
| `vexor update` | Fetches the latest release version and shows links to update via GitHub or PyPI. |
|
|
114
|
+
| `vexor config --set-api-key/--clear-api-key` | Manage the stored Gemini API key. |
|
|
115
|
+
| `vexor config --set-model/--set-batch-size/--show` | Manage default model and batch size. |
|
|
116
|
+
| `vexor config --show-index-all/--clear-index-all` | Inspect or delete every cached index regardless of path/mode. |
|
vexor-0.4.2/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<img src="https://raw.githubusercontent.com/scarletkc/vexor/refs/heads/main/assets/vexor.svg" alt="Vexor" width="50%" height="auto">
|
|
4
|
+
|
|
5
|
+
# Vexor
|
|
6
|
+
|
|
7
|
+
[](https://www.python.org/downloads/)
|
|
8
|
+
[](https://pypi.org/project/vexor/)
|
|
9
|
+
[](https://github.com/scarletkc/vexor/actions/workflows/publish.yml)
|
|
10
|
+
[](https://codecov.io/github/scarletkc/vexor)
|
|
11
|
+
[](https://github.com/scarletkc/vexor/blob/main/LICENSE)
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Vexor is a vector-powered CLI that searches files semantically. It uses Google GenAI's `gemini-embedding-001` model to embed files and queries, then shows matches with cosine similarity.
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
Download from [releases](https://github.com/scarletkc/vexor/releases) without python, or with:
|
|
21
|
+
```bash
|
|
22
|
+
pip install vexor # or use pipx, uv
|
|
23
|
+
```
|
|
24
|
+
The CLI entry point is `vexor`.
|
|
25
|
+
|
|
26
|
+
## Configure
|
|
27
|
+
Set the Gemini API key once and reuse it everywhere:
|
|
28
|
+
```bash
|
|
29
|
+
vexor config --set-api-key "YOUR_KEY"
|
|
30
|
+
```
|
|
31
|
+
Optional defaults:
|
|
32
|
+
```bash
|
|
33
|
+
vexor config --set-model gemini-embedding-001
|
|
34
|
+
vexor config --set-batch-size 0 # 0 = single request
|
|
35
|
+
```
|
|
36
|
+
Configuration is stored in `~/.vexor/config.json`.
|
|
37
|
+
|
|
38
|
+
Inspect or reset every cached index:
|
|
39
|
+
```bash
|
|
40
|
+
vexor config --show-index-all
|
|
41
|
+
vexor config --clear-index-all
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Workflow
|
|
45
|
+
1. **Index** the project root (includes every subdirectory):
|
|
46
|
+
```bash
|
|
47
|
+
vexor index --path ~/projects/demo --mode name --include-hidden
|
|
48
|
+
```
|
|
49
|
+
2. **Search** from anywhere, pointing to the same path:
|
|
50
|
+
```bash
|
|
51
|
+
vexor search "api client config" --path ~/projects/demo --mode name --top 5
|
|
52
|
+
```
|
|
53
|
+
Output example:
|
|
54
|
+
```
|
|
55
|
+
Vexor semantic file search results
|
|
56
|
+
──────────────────────────────────
|
|
57
|
+
# Similarity File path Preview
|
|
58
|
+
1 0.923 ./src/config_loader.py config loader entrypoint
|
|
59
|
+
2 0.871 ./src/utils/config_parse.py parse config helpers
|
|
60
|
+
3 0.809 ./tests/test_config_loader.py tests for config loader
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Tips:
|
|
64
|
+
- Keep one index per project root; subdirectories need separate indexes only if you explicitly run `vexor index` on them.
|
|
65
|
+
- Toggle `--no-recursive` (or `-n`) on both `index` and `search` when you only care about the current directory; recursive and non-recursive caches are stored separately.
|
|
66
|
+
- Hidden files are included only if both `index` and `search` use `--include-hidden`.
|
|
67
|
+
- Re-running `vexor index` only re-embeds files whose names changed (or were added/removed); if more than half the files differ, it automatically falls back to a full rebuild for consistency.
|
|
68
|
+
- Specify the indexing mode with `--mode`; currently `name` (file names only) and `head` (first chunk of supported text/code/PDF/DOCX/etc. files) are available, each with its own cache.
|
|
69
|
+
|
|
70
|
+
## Commands
|
|
71
|
+
| Command | Description |
|
|
72
|
+
| ------- | ----------- |
|
|
73
|
+
| `vexor index --path PATH --mode MODE [--include-hidden] [--no-recursive] [--clear/--show]` | Scans `PATH` (recursively by default), embeds content according to `MODE` (`name` or `head`), and writes a cache under `~/.vexor`. |
|
|
74
|
+
| `vexor search QUERY --path PATH --mode MODE [--top K] [--include-hidden] [--no-recursive]` | Loads the cached embeddings for `PATH` (matching the chosen mode/recursion/hidden settings), shows matches for `QUERY`. |
|
|
75
|
+
| `vexor doctor` | Checks whether the `vexor` command is available on the current `PATH`. |
|
|
76
|
+
| `vexor update` | Fetches the latest release version and shows links to update via GitHub or PyPI. |
|
|
77
|
+
| `vexor config --set-api-key/--clear-api-key` | Manage the stored Gemini API key. |
|
|
78
|
+
| `vexor config --set-model/--set-batch-size/--show` | Manage default model and batch size. |
|
|
79
|
+
| `vexor config --show-index-all/--clear-index-all` | Inspect or delete every cached index regardless of path/mode. |
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
|
|
2
|
+
[build-system]
|
|
3
|
+
requires = ["hatchling>=1.21"]
|
|
4
|
+
build-backend = "hatchling.build"
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "vexor"
|
|
8
|
+
description = "A vector-powered CLI for semantic search over files."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [{ name = "scarletkc" }]
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
keywords = ["semantic-search", "cli", "typer", "ai"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Intended Audience :: End Users/Desktop",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Programming Language :: Python",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Topic :: Utilities",
|
|
23
|
+
"Topic :: System :: Filesystems",
|
|
24
|
+
"Topic :: Text Processing :: Indexing",
|
|
25
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
26
|
+
]
|
|
27
|
+
dependencies = [
|
|
28
|
+
"google-genai>=0.5.0",
|
|
29
|
+
"python-dotenv>=1.0.0",
|
|
30
|
+
"scikit-learn>=1.3.0",
|
|
31
|
+
"numpy>=1.23.0",
|
|
32
|
+
"typer>=0.9.0",
|
|
33
|
+
"rich>=13.0.0",
|
|
34
|
+
"charset-normalizer>=3.3.0",
|
|
35
|
+
"pypdf>=4.0.0",
|
|
36
|
+
"python-docx>=0.8.11",
|
|
37
|
+
]
|
|
38
|
+
dynamic = ["version"]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
[project.optional-dependencies]
|
|
42
|
+
dev = [
|
|
43
|
+
"pytest>=7.4",
|
|
44
|
+
"pytest-cov>=4.1",
|
|
45
|
+
"build>=1.2.1",
|
|
46
|
+
"twine>=5.1.1",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[project.urls]
|
|
50
|
+
Repository = "https://github.com/scarletkc/vexor"
|
|
51
|
+
|
|
52
|
+
[project.scripts]
|
|
53
|
+
vexor = "vexor.cli:run"
|
|
54
|
+
|
|
55
|
+
[tool.hatch.version]
|
|
56
|
+
path = "vexor/__init__.py"
|
|
57
|
+
|
|
58
|
+
[tool.hatch.build.targets.sdist]
|
|
59
|
+
include = [
|
|
60
|
+
"vexor",
|
|
61
|
+
"README.md",
|
|
62
|
+
"LICENSE",
|
|
63
|
+
"pyproject.toml",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[tool.hatch.build.targets.wheel]
|
|
67
|
+
packages = ["vexor"]
|
|
68
|
+
|
|
69
|
+
[tool.pytest.ini_options]
|
|
70
|
+
addopts = "-ra"
|
|
71
|
+
pythonpath = ["."]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Entry point for `python -m vexor` and frozen builds."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
try:
|
|
6
|
+
# Normal package execution path
|
|
7
|
+
from .cli import run
|
|
8
|
+
except ImportError: # pragma: no cover - happens in frozen single-file builds
|
|
9
|
+
from vexor.cli import run # type: ignore[import]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def main() -> None:
|
|
13
|
+
"""Execute the Typer application."""
|
|
14
|
+
run()
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if __name__ == "__main__":
|
|
18
|
+
raise SystemExit(main())
|