File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from setuptools import setup
22
3+ with open ('README.md' , encoding = 'utf-8' ) as f :
4+ long_description = f .read ()
5+
36setup (
47 name = 'vecto-sdk' ,
5- version = '0.2.1' ,
8+ version = '0.2.2' ,
9+ author = 'Xpress AI' ,
10+ author_email = 'eduardo@xpress.ai' ,
11+ description = 'Official Python SDK for Vecto' ,
12+ long_description = long_description ,
13+ long_description_content_type = 'text/markdown' ,
14+ url = 'https://github.com/XpressAI/vecto-python-sdk' ,
615 packages = ['vecto' ],
716 install_requires = [
817 'requests' ,
918 'requests_toolbelt'
10- ]
19+ ],
20+ classifiers = [
21+ 'Programming Language :: Python :: 3' ,
22+ 'License :: OSI Approved :: Apache Software License' ,
23+ 'Operating System :: OS Independent' ,
24+ ],
25+ python_requires = '>=3.8' ,
26+ keywords = 'vector-database, vector-search' ,
27+ project_urls = {
28+ 'Documentation' : 'https://docs.vecto.ai/' ,
29+ 'Source' : 'https://github.com/XpressAI/vecto-python-sdk' ,
30+ 'Issues' : 'https://github.com/XpressAI/vecto-python-sdk/issues'
31+ },
1132)
33+
You can’t perform that action at this time.
0 commit comments