Skip to content

Commit

Permalink
fix: improve package import structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewcasale committed Dec 14, 2024
1 parent 4feddbf commit e01f12b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2024-12-14

### Fixed
- Package import structure to properly expose modules
- Added package data configuration
- Disabled zip_safe to ensure proper module loading

## [0.1.1] - 2024-12-14

### Fixed
Expand Down Expand Up @@ -32,5 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Restructured project to use src/ directory layout
- Updated package metadata and documentation

[0.1.2]: https://github.com/mikewcasale/repominify/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/mikewcasale/repominify/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/mikewcasale/repominify/releases/tag/v0.1.0
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="repominify",
version="0.1.1",
version="0.1.2",
author="Mike Casale",
author_email="[email protected]",
description="A Python package that optimizes codebase representations for LLMs by generating compact, context-rich summaries",
Expand All @@ -21,6 +21,10 @@
"repominify=core.cli:main",
],
},
package_data={
"": ["py.typed"],
},
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down

0 comments on commit e01f12b

Please sign in to comment.