Commit d3037f34 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

package yaml files in lm_eval,examples modules

parent 01cfb2ff
...@@ -13,6 +13,12 @@ setuptools.setup( ...@@ -13,6 +13,12 @@ setuptools.setup(
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/EleutherAI/lm-evaluation-harness", url="https://github.com/EleutherAI/lm-evaluation-harness",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
# required to include yaml files in pip installation
package_data={
'lm_eval': ['**/*.yaml'],
'examples': ['**/*.yaml'],
},
include_package_data=True,
classifiers=[ classifiers=[
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment