Skip to content

Commit 5f507d0

Browse files
authored
Merge pull request #160 from codelion/fix-pip-install
Fix pip install
2 parents 89eef8c + 64a5c81 commit 5f507d0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

optillm/cepo/__init__.py

Whitespace-only changes.

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
setup(
44
name="optillm",
5-
version="0.1.1",
5+
version="0.1.2",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={
9-
'optillm': ['plugins/*.py'], # Include plugin files
10-
'optillm': ['cepo/configs/*.yaml'], # Include yaml files in the package
9+
'optillm': [
10+
'plugins/*.py', # Include plugin files
11+
'cepo/*.py', # Include cepo module Python files
12+
'cepo/configs/*.yaml', # Include yaml files
13+
],
1114
},
1215
include_package_data=True, # This is important
1316
install_requires=[

0 commit comments

Comments
 (0)