|
| 1 | +from pathlib import Path |
| 2 | +from setuptools import setup, find_packages |
| 3 | + |
| 4 | +here = Path(__file__).parent.resolve() |
| 5 | + |
| 6 | +setup( |
| 7 | + name="sqlite-vec-client", |
| 8 | + version="0.1.0", |
| 9 | + author="Ahmet Atasoglu", |
| 10 | + |
| 11 | + description="A tiny Python client around sqlite-vec for CRUD and similarity search.", |
| 12 | + long_description=(here / "README.md").read_text(encoding="utf-8"), |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/atasoglu/sqlite-vec-client", |
| 15 | + license="MIT", |
| 16 | + packages=find_packages(), |
| 17 | + install_requires=[ |
| 18 | + "sqlite-vec>=0.1.6", |
| 19 | + ], |
| 20 | + python_requires=">=3.9", |
| 21 | + classifiers=[ |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "License :: OSI Approved :: MIT License", |
| 29 | + "Operating System :: OS Independent", |
| 30 | + ], |
| 31 | + include_package_data=True, |
| 32 | +) |
0 commit comments