0hq / tinyvector

A tiny nearest-neighbor embedding database built with SQLite and Pytorch. (In development!)
MIT License
772 stars 24 forks source link

Fix setup.py by removing 'uuid' from install_requires list #12

Closed anantsnh closed 1 year ago

anantsnh commented 1 year ago

Including uuid as an installation requirement causes an error when users try to install the package from PyPI because pip cannot find a version of 'uuid' to install - 'uuid' package is part of Python's Standard Library and is always available in any Python environment.

This change should resolve the installation error and enable users to install the package without any issues."