1 Star 2 Fork 0

Pasca/Milvus的python接口pymilvus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 956 Bytes
一键复制 编辑 原始数据 按行查看 历史
BossZou 提交于 2020-10-16 10:00 +08:00 . Update python api doc for html (#259)
import pathlib
import setuptools
import io
import re
HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()
with io.open("milvus/client/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setuptools.setup(
name="pymilvus",
version=version,
description="Python Sdk for Milvus",
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/milvus-io/pymilvus',
license="Apache-2.0",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["grpcio>=1.22.0", "grpcio-tools>=1.22.0", "requests>=2.22.0", "ujson>=1.35"],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.5'
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Samuelcoding/pymilvus.git
git@gitee.com:Samuelcoding/pymilvus.git
Samuelcoding
pymilvus
Milvus的python接口pymilvus
master

搜索帮助