1 Star 0 Fork 0

guan_zi/kaggle-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/python
#
# Copyright 2018 Kaggle Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='kaggle',
version='1.5.1.1',
description='Kaggle API',
long_description=
('Official API for https://www.kaggle.com, accessible using a command line '
'tool implemented in Python. Beta release - Kaggle reserves the right to '
'modify the API functionality currently offered.'),
author='Kaggle',
author_email='support@kaggle.com',
url='https://github.com/Kaggle/kaggle-api',
keywords=['Kaggle', 'API'],
entry_points={'console_scripts': ['kaggle = kaggle.cli:main']},
install_requires=[
# Restriction that urllib3's version is less than 1.23.0 needed to avoid
# requests dependency problem. This restriction will be removed after
# request release later than 2.18.4.
# ref: https://github.com/Kaggle/kaggle-api/pull/49
'urllib3 >= 1.15, < 1.23.0',
'six >= 1.10',
'certifi',
'python-dateutil',
'requests',
'tqdm',
'python-slugify'
],
packages=find_packages(),
license='Apache 2.0')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/guan-zi/kaggle-api.git
git@gitee.com:guan-zi/kaggle-api.git
guan-zi
kaggle-api
kaggle-api
master

搜索帮助