forked from supabase/vecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
88 lines (74 loc) · 2.46 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
"""Setup script for the package."""
import logging
import os
import sys
from pathlib import Path
import setuptools
PACKAGE_NAME = "vecs"
MINIMUM_PYTHON_VERSION = (3, 8, 0, "", 0)
def check_python_version():
"""Exit when the Python version is too low."""
if sys.version_info < MINIMUM_PYTHON_VERSION:
sys.exit(
"At least Python {0}.{1}.{2} is required.".format(
*MINIMUM_PYTHON_VERSION[:3]
)
)
def read_package_variable(key, filename="__init__.py"):
"""Read the value of a variable from the package without importing."""
module_path = os.path.join("src", PACKAGE_NAME, filename)
with open(module_path) as module:
for line in module:
parts = line.strip().split(" ", 2)
if parts[:-1] == [key, "="]:
return parts[-1].strip("'").strip('"')
logging.warning("'%s' not found in '%s'", key, module_path)
raise KeyError(key)
check_python_version()
long_description = (Path(__file__).parent / "README.md").read_text()
REQUIRES = [
"pgvector==0.1.*",
"sqlalchemy==2.*",
"psycopg2-binary==2.9.*",
"flupy==1.*",
"deprecated==1.2.*",
]
setuptools.setup(
name=read_package_variable("__project__"),
version=read_package_variable("__version__"),
description="pgvector client",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/supabase/vecs",
author="Oliver Rice",
packages=setuptools.find_packages("src", exclude="tests"),
package_dir={"": "src"},
package_data={"": ["py.typed"]},
tests_require=["pytest"],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=REQUIRES,
extras_require={
"dev": ["pytest", "parse", "numpy", "pytest-cov"],
"docs": [
"mkdocs",
"pygments",
"pymdown-extensions",
"pymarkdown",
"mike",
],
"text_embedding": ["sentence-transformers==2.*"],
},
)