Skip to content

Commit

Permalink
Update setup.py (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot authored Mar 21, 2024
1 parent 8faeb52 commit 63b8d60
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,27 @@ def build_extensions(self):
url="https://github.com/spotify/voyager",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: Database :: Database Engines/Servers",
"Programming Language :: Python :: 3.7",
"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",
],
ext_modules=ext_modules,
install_requires=["numpy"],
cmdclass={"build_ext": BuildExt},
zip_safe=False,
package_data={
"voyager": ["py.typed", "*.pyi", "**/*.pyi"],
},
)

0 comments on commit 63b8d60

Please sign in to comment.