forked from pgvector/pgvector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 754 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pgvector',
version='0.2.5',
description='pgvector support for Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pgvector/pgvector-python',
author='Andrew Kane',
author_email='andrew@ankane.org',
license='MIT',
packages=[
'pgvector.asyncpg',
'pgvector.django',
'pgvector.peewee',
'pgvector.psycopg',
'pgvector.psycopg2',
'pgvector.sqlalchemy',
'pgvector.utils'
],
python_requires='>=3.8',
install_requires=[
'numpy'
],
zip_safe=False
)