Skip to content

Commit 86e2b5d

Browse files
committed
add pypi project desc
1 parent edfd4b0 commit 86e2b5d

1 file changed

Lines changed: 24 additions & 2 deletions

File tree

setup.py

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
11
from setuptools import setup
22

3+
with open('README.md', encoding='utf-8') as f:
4+
long_description = f.read()
5+
36
setup(
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+

0 commit comments

Comments
 (0)