-
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.
Rename src directory to repominify for v0.1.3
- Loading branch information
1 parent
7aa9c08
commit fe72e7c
Showing
14 changed files
with
25 additions
and
6 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
repominify - Optimize codebase representations for LLMs | ||
""" | ||
|
||
__version__ = "0.1.0" | ||
__version__ = "0.1.3" | ||
__author__ = "Mike Casale" | ||
__email__ = "[email protected]" | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,27 @@ | ||
from setuptools import setup, find_namespace_packages | ||
import os | ||
import re | ||
|
||
def get_version(): | ||
init_path = os.path.join("repominify", "__init__.py") | ||
with open(init_path, "r") as f: | ||
content = f.read() | ||
version_match = re.search(r'^__version__ = ["\']([^"\']*)["\']', content, re.M) | ||
if version_match: | ||
return version_match.group(1) | ||
raise RuntimeError("Cannot find version string.") | ||
|
||
setup( | ||
name="src", | ||
version="0.1.3", | ||
name="repominify", | ||
version=get_version(), | ||
author="Mike Casale", | ||
author_email="[email protected]", | ||
description="A Python package that optimizes codebase representations for LLMs by generating compact, context-rich summaries", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/mikewcasale/repominify", | ||
package_dir={"": "src"}, | ||
packages=find_namespace_packages(where="src", include=["*"]), | ||
package_dir={"": "repominify"}, | ||
packages=find_namespace_packages(where="repominify", include=["*"]), | ||
python_requires=">=3.7", | ||
install_requires=[ | ||
"networkx>=2.6.0", | ||
|