finch-cli 0.1.1__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: finch-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Tailor your resume to any job posting from your terminal.
5
5
  Project-URL: Homepage, https://applyfinch.com
6
6
  Project-URL: Repository, https://github.com/applyEasy/finch-cli
@@ -21,6 +21,7 @@ Classifier: Topic :: Utilities
21
21
  Requires-Python: >=3.10
22
22
  Requires-Dist: click>=8.1.0
23
23
  Requires-Dist: httpx>=0.27.0
24
+ Requires-Dist: lxml-html-clean>=0.4
24
25
  Requires-Dist: openai>=1.30.0
25
26
  Requires-Dist: rich>=13.0.0
26
27
  Requires-Dist: textual>=0.83.0
@@ -46,7 +47,7 @@ export DEEPSEEK_API_KEY=sk-...
46
47
  finch ui
47
48
  ```
48
49
 
49
- deepseek keys are cheap (currently around $0.27 / 1M input tokens, ~30x cheaper than claude). get one at https://platform.deepseek.com/api_keys.
50
+ deepseek keys are cheap (~30x cheaper than the major frontier models). get one at https://platform.deepseek.com/api_keys.
50
51
 
51
52
  other providers work too. any openai-compatible chat-completions endpoint: openai, together, groq, fireworks. pass `--base-url` and the matching `--api-key`, or set `FINCH_BASE_URL` and `OPENAI_API_KEY`. the same `finch_cli/tailor.py` runs against all of them.
52
53
 
@@ -58,7 +59,7 @@ three tabs, one keyboard.
58
59
 
59
60
  **library** is the list of tailored resumes you've saved. Markdown preview on the right.
60
61
 
61
- **tailor** is the three-pane editor: base resume / job posting / tailored output. claude rewrites bullets and ordering to fit the posting. won't invent skills you don't have. a match-analysis panel at the bottom shows an ats-style score, which job keywords your resume covers, which ones it doesn't, and how much the tailored version moved the needle vs the base.
62
+ **tailor** is the three-pane editor: base resume / job posting / tailored output. the model rewrites bullets and ordering to fit the posting. won't invent skills you don't have. a match-analysis panel at the bottom shows an ats-style score, which job keywords your resume covers, which ones it doesn't, and how much the tailored version moved the needle vs the base.
62
63
 
63
64
  ## install (pure cli, no tui)
64
65
 
@@ -14,7 +14,7 @@ export DEEPSEEK_API_KEY=sk-...
14
14
  finch ui
15
15
  ```
16
16
 
17
- deepseek keys are cheap (currently around $0.27 / 1M input tokens, ~30x cheaper than claude). get one at https://platform.deepseek.com/api_keys.
17
+ deepseek keys are cheap (~30x cheaper than the major frontier models). get one at https://platform.deepseek.com/api_keys.
18
18
 
19
19
  other providers work too. any openai-compatible chat-completions endpoint: openai, together, groq, fireworks. pass `--base-url` and the matching `--api-key`, or set `FINCH_BASE_URL` and `OPENAI_API_KEY`. the same `finch_cli/tailor.py` runs against all of them.
20
20
 
@@ -26,7 +26,7 @@ three tabs, one keyboard.
26
26
 
27
27
  **library** is the list of tailored resumes you've saved. Markdown preview on the right.
28
28
 
29
- **tailor** is the three-pane editor: base resume / job posting / tailored output. claude rewrites bullets and ordering to fit the posting. won't invent skills you don't have. a match-analysis panel at the bottom shows an ats-style score, which job keywords your resume covers, which ones it doesn't, and how much the tailored version moved the needle vs the base.
29
+ **tailor** is the three-pane editor: base resume / job posting / tailored output. the model rewrites bullets and ordering to fit the posting. won't invent skills you don't have. a match-analysis panel at the bottom shows an ats-style score, which job keywords your resume covers, which ones it doesn't, and how much the tailored version moved the needle vs the base.
30
30
 
31
31
  ## install (pure cli, no tui)
32
32
 
@@ -1,3 +1,3 @@
1
1
  """Finch CLI - tailor your resume to any job posting from your terminal."""
2
2
 
3
- __version__ = "0.1.1"
3
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "finch-cli"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Tailor your resume to any job posting from your terminal."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -23,6 +23,10 @@ classifiers = [
23
23
  dependencies = [
24
24
  "click>=8.1.0",
25
25
  "httpx>=0.27.0",
26
+ # lxml_html_clean is a transitive of trafilatura but newer lxml split it
27
+ # out, so declare it explicitly here to keep `pip install finch-cli` working
28
+ # on a clean machine.
29
+ "lxml_html_clean>=0.4",
26
30
  "openai>=1.30.0",
27
31
  "rich>=13.0.0",
28
32
  "textual>=0.83.0",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes