File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 22import os
33
44# Version information
5- __version__ = "0.1.3 "
5+ __version__ = "0.1.4 "
66
77# Get the path to the root optillm.py
88spec = util .spec_from_file_location (
Original file line number Diff line number Diff line change 1+ import os
12from setuptools import setup , find_packages
23
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-
124setup (
135 name = "optillm" ,
14- version = "0.1.2 " ,
15- packages = find_packages (),
6+ version = "0.1.4 " ,
7+ packages = find_packages (include = [ 'optillm' , 'optillm.*' ]), # This ensures all subpackages are included
168 py_modules = ['optillm' ],
179 package_data = {
1810 'optillm' : [
You can’t perform that action at this time.
0 commit comments