forked from marqo-ai/py-marqo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1017 Bytes
/
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
from setuptools import setup, find_packages
# from src.marqo.version import __version__
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
install_requires=[
# client:
"requests",
"urllib3",
"pydantic"
],
tests_require=[
"pytest",
"tox"
],
name="marqo",
version="0.9.5",
author="marqo org",
author_email="[email protected]",
description="Tensor search for humans",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(where="src", exclude=("tests*",)),
keywords="search python marqo opensearch tensor neural semantic vector embedding",
platform="any",
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
python_requires=">=3",
package_dir={"": "src"},
)