-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct package name in setup.py
- Loading branch information
1 parent
6c17d14
commit 112fc1f
Showing
3 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
# repominify v0.1.1 | ||
# repominify v0.1.3 | ||
|
||
Bug fix release to correct package import structure and CLI functionality. | ||
Bug fix release to correct package name. | ||
|
||
## Fixed | ||
- Package import structure to work with current src/ layout | ||
- CLI entry point path | ||
- Package discovery configuration | ||
- Fixed incorrect package name in setup.py | ||
|
||
## Installation | ||
|
||
```bash | ||
pip install repominify==0.1.1 | ||
pip install repominify==0.1.3 | ||
``` | ||
|
||
For full details, see the [CHANGELOG](https://github.com/mikewcasale/repominify/blob/main/CHANGELOG.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="src", | ||
version="0.1.2", | ||
version="0.1.3", | ||
author="Mike Casale", | ||
author_email="[email protected]", | ||
description="A Python package that optimizes codebase representations for LLMs by generating compact, context-rich summaries", | ||
|