Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sdan committed Apr 17, 2024
1 parent 351302e commit 8215d5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

from vlite import __version__
__version__ = '0.2.3'

setup(
name='vlite',
Expand All @@ -18,21 +18,21 @@
'beautifulsoup4',
'huggingface_hub',
'tiktoken',
'torch==2.2.2',
'transformers==4.39.0',
'torch==2.2.2',
'transformers==4.39.0',
'tokenizers==0.15.2',
],
extras_require={
'ocr': ['surya-ocr-vlite']
},
python_requires='>=3.10', # Specify the Python version requirement
python_requires='>=3.10',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU AGPLv3'
'License :: OSI Approved :: GNU Affero General Public License v3'
]
)
3 changes: 1 addition & 2 deletions vlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from .main import VLite
from .model import EmbeddingModel
__version__ = '0.2.2'
from .model import EmbeddingModel
2 changes: 1 addition & 1 deletion vlite/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import List, Optional, Union
from vlite.main import VLite
from vlite.utils import process_file, process_pdf, process_webpage
from vlite import __version__
from setup import __version__

app = FastAPI(
title="VLite API",
Expand Down

0 comments on commit 8215d5d

Please sign in to comment.