diff --git a/MANIFEST.in b/MANIFEST.in index ba79e3f2..28c8a1dd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ recursive-include syncode/parsers/grammars *.lark recursive-include syncode/larkm/grammars *.lark +recursive-include syncode/evaluation/mxeval *.py *.json *.yaml *.md diff --git a/README.md b/README.md index 29aa1f78..5d0c5c43 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ SynCode depends on HuggingFace [transformers](https://github.com/huggingface/tra | SynCode version | Required transformers version | Python version | | -------------- | ----------------------------- | -------------- | -| `v0.4.3` (latest) | `v4.44.0` | 3.6 - 3.12 | +| `v0.4.4` (latest) | `v4.44.0` | 3.6 - 3.12 | **Note:** Python 3.13 is not currently supported due to dependency constraints. diff --git a/pyproject.toml b/pyproject.toml index 18e4b06f..27cc728b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "syncode" -version="0.4.3" +version="0.4.4" requires-python = ">=3.6,<3.13" description = "Grammar-guided code generation tool" readme = "README.md" diff --git a/setup.py b/setup.py index c9f629e9..92fd93a3 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setuptools.setup( name="syncode", - version="0.4.3", + version="0.4.4", author="Shubham Ugare", author_email="shubhamugare@gmail.com", description="This package provides the tool for grammar augmented LLM generation.", @@ -34,4 +34,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], + package_data={ + "syncode.evaluation.mxeval": ["*.json", "*.py"], + }, ) \ No newline at end of file