diff --git a/code2prompt/core/process_file.py b/code2prompt/core/process_file.py index 64bad32..19011a0 100644 --- a/code2prompt/core/process_file.py +++ b/code2prompt/core/process_file.py @@ -10,6 +10,7 @@ from code2prompt.comment_stripper.strip_comments import strip_comments from code2prompt.contrib.body_stripper import strip_body_contents + def process_file( file_path: Path, suppress_comments: bool, line_number: bool, no_codeblock: bool, strip_body: bool, syntax_map: dict ): diff --git a/code2prompt/language_inference.py b/code2prompt/language_inference.py deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index 11e5c7d..5feee51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "patched-code2prompt" -version = "0.9.0.dev0" +name = "code2prompt" +version = "0.9.0" description = "A tool to convert code snippets into AI prompts for documentation or explanation purposes." authors = ["Raphael MANSUY "] license = "MIT" @@ -21,9 +21,6 @@ classifiers = [ include = [ "code2prompt/templates/**/*", ] -packages = [ - { include = "code2prompt", from = "." } -] [tool.poetry.dependencies] python = "^3.8,<4.0"