-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsetup.py
65 lines (62 loc) · 1.98 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
#!/usr/bin/env python
"""
Installs FiftyOne Docs Search.
| Copyright 2017-2023, Voxel51, Inc.
| `voxel51.com <https://voxel51.com/>`_
|
"""
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"argcomplete",
"google-cloud-storage",
"langchain",
"markdownify",
"openai",
"packaging",
"qdrant-client",
"regex",
"rich",
"setuptools",
"tqdm",
]
with open("README.md", "r") as fh:
description = fh.read()
setup(
name="fiftyone-docs-search",
version="0.21.0",
author="Voxel51, Inc.",
author_email="[email protected]",
packages=find_packages(),
description="Semantic search for the FiftyOne Docs from command line",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/voxel51/fiftyone-docs-search",
license="Apache",
python_requires=">=3.8",
install_requires=INSTALL_REQUIRES,
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={
"console_scripts": [
"fiftyone-docs-search=fiftyone.docs_search.cli:main"
]
},
)