1 Star 0 Fork 0

deeplearningrepos/Hub

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
Abhinav Tuli 提交于 2021-03-26 19:09 +08:00 . Update setup.py
"""
License:
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
"""
import os
from setuptools import find_packages, setup
project = "hub"
VERSION = "1.3.2"
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(this_directory, "requirements.txt")) as f:
requirements = f.readlines()
setup(
name=project,
version=VERSION,
description="Activeloop Hub",
long_description=long_description,
long_description_content_type="text/markdown",
author="Snark AI Inc.",
author_email="support@activeloop.ai",
license="MPL 2.0",
url="https://github.com/activeloopai/Hub",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
keywords="snark-hub",
project_urls={
"Documentation": "https://docs.activeloop.ai/",
"Source": "https://github.com/activeloopai/Hub",
},
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.6",
install_requires=requirements,
setup_requires=[],
dependency_links=[],
entry_points={
"console_scripts": [
"activeloop = hub.cli.command:cli",
"activeloop-local = hub.cli.local:cli",
"activeloop-dev = hub.cli.dev:cli",
"hub = hub.cli.command:cli",
]
},
tests_require=["pytest", "mock>=1.0.1"],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/deeplearningrepos/Hub.git
git@gitee.com:deeplearningrepos/Hub.git
deeplearningrepos
Hub
Hub
master

搜索帮助