We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89eef8c commit f0a231aCopy full SHA for f0a231a
optillm/cepo/__init__.py
setup.py
@@ -6,8 +6,11 @@
6
packages=find_packages(),
7
py_modules=['optillm'],
8
package_data={
9
- 'optillm': ['plugins/*.py'], # Include plugin files
10
- 'optillm': ['cepo/configs/*.yaml'], # Include yaml files in the package
+ 'optillm': [
+ 'plugins/*.py', # Include plugin files
11
+ 'cepo/*.py', # Include cepo module Python files
12
+ 'cepo/configs/*.yaml', # Include yaml files
13
+ ],
14
},
15
include_package_data=True, # This is important
16
install_requires=[
0 commit comments