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 b5bac72 commit 2256137Copy full SHA for 2256137
setup.py
@@ -1,18 +1,10 @@
1
+import os
2
from setuptools import setup, find_packages
3
-def read_version():
4
- version_dict = {}
5
- try:
6
- with open('optillm/__init__.py', 'r') as f:
7
- exec(f.read(), version_dict)
8
- return version_dict.get('__version__', 'unknown')
9
- except Exception:
10
- return 'unknown'
11
-
12
setup(
13
name="optillm",
14
- version="0.1.2",
15
- packages=find_packages(),
+ version="0.1.3",
+ packages=find_packages(include=['optillm', 'optillm.*']), # This ensures all subpackages are included
16
py_modules=['optillm'],
17
package_data={
18
'optillm': [
0 commit comments