-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
setup.py
30 lines (29 loc) · 1.27 KB
/
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
# coding=utf-8
from setuptools import setup, find_packages
# Note: pyproject.toml seems to be chosen by pip install over setup.py, so this
# file is likely not being used anymore. We should verify and merge this into
# pyproject.toml instead of maintaining both flows.
setup(
name='kaggle',
version='1.6.17',
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',
project_urls={
'Documentation': 'https://www.kaggle.com/docs/api',
'GitHub': 'https://github.com/Kaggle/kaggle-api',
'Tracker': 'https://github.com/Kaggle/kaggle-api/issues',
},
keywords=['Kaggle', 'API'],
entry_points={'console_scripts': ['kaggle = kaggle.cli:main']},
install_requires=[
'six >= 1.10', 'certifi >= 2023.7.22', 'python-dateutil', 'requests',
'tqdm', 'python-slugify', 'urllib3', 'bleach', 'protobuf'
],
packages=find_packages(exclude=("src.*", "src")),
license='Apache 2.0')