Skip to content

Commit fbf94c4

Browse files
committed
bump to v0.6.0 with refactored CLI architecture, pagination, and safer internal API
1 parent e99f1d5 commit fbf94c4

7 files changed

Lines changed: 339 additions & 212 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "searchcode"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
description = "Simple, comprehensive code search."
55
authors = ["Ritchie Mwewa <rly0nheart@duck.com>"]
66
license = "GPLv3+"
@@ -16,6 +16,10 @@ classifiers = [
1616
"Natural Language :: English"
1717
]
1818

19+
20+
packages = [
21+
{ include = "searchcode", from = "src" }
22+
]
1923
[tool.poetry.dependencies]
2024
python = "^3.10"
2125
requests = "^2.32.2"
@@ -30,5 +34,5 @@ requires = ["poetry-core"]
3034
build-backend = "poetry.core.masonry.api"
3135

3236
[tool.poetry.scripts]
33-
sc = "searchcode.__app:cli"
34-
searchcode = "searchcode.__app:cli"
37+
sc = "searchcode.__cli.app:cli"
38+
searchcode = "searchcode.__cli.app:cli"

src/searchcode/__app.py

Lines changed: 0 additions & 179 deletions
This file was deleted.

src/searchcode/__cli/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)