mirror of https://github.com/milvus-io/milvus.git
18 lines
429 B
Python
18 lines
429 B
Python
|
import setuptools
|
||
|
|
||
|
# TODO
|
||
|
long_description = ''
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="MegaSearch",
|
||
|
version="0.0.1",
|
||
|
author="XuanYang",
|
||
|
author_email="xuan.yang@zilliz.com",
|
||
|
description="Sdk for using MegaSearch",
|
||
|
packages=setuptools.find_packages(),
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
)
|