Skip to content

Commit

Permalink
Merge pull request #160 from codelion/fix-pip-install
Browse files Browse the repository at this point in the history
Fix pip install
  • Loading branch information
codelion authored Jan 29, 2025
2 parents 89eef8c + 64a5c81 commit 5f507d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Empty file added optillm/cepo/__init__.py
Empty file.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@

setup(
name="optillm",
version="0.1.1",
version="0.1.2",
packages=find_packages(),
py_modules=['optillm'],
package_data={
'optillm': ['plugins/*.py'], # Include plugin files
'optillm': ['cepo/configs/*.yaml'], # Include yaml files in the package
'optillm': [
'plugins/*.py', # Include plugin files
'cepo/*.py', # Include cepo module Python files
'cepo/configs/*.yaml', # Include yaml files
],
},
include_package_data=True, # This is important
install_requires=[
Expand Down

0 comments on commit 5f507d0

Please sign in to comment.