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.
2 parents 89eef8c + 64a5c81 commit 5f507d0Copy full SHA for 5f507d0
optillm/cepo/__init__.py
setup.py
@@ -2,12 +2,15 @@
2
3
setup(
4
name="optillm",
5
- version="0.1.1",
+ version="0.1.2",
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