This repository has been archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
70 lines (54 loc) · 1.85 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
from setuptools import setup, find_packages
from kaggle_cli.meta import VERSION
PROJECT = 'kaggle-cli'
long_description = \
'https://github.com/floydwch/kaggle-cli/blob/master/README.md'
setup(
name=PROJECT,
version=VERSION,
description='An unofficial Kaggle command line tool.',
long_description=long_description,
author='floydwch',
author_email='[email protected]',
url='https://github.com/floydwch/kaggle-cli',
download_url='https://github.com/floydwch/kaggle-cli/tarball/master',
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=['Any'],
scripts=[],
provides=[],
install_requires=[
'cliff>=2.8.0,<2.9',
'MechanicalSoup>=0.7.0,<0.9',
'lxml>=4.0.0,<4.1',
'cssselect>=1.0.1,<1.1',
'configparser',
'progressbar2>=3.34.3,<3.35',
'beautifulsoup4>=4.6.0,<4.7'
],
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'kg = kaggle_cli.main:main'
],
'kaggle_cli': [
'submit = kaggle_cli.submit:Submit',
'config = kaggle_cli.config:Config',
'download = kaggle_cli.download:Download',
'dataset = kaggle_cli.download:Dataset',
'submissions = kaggle_cli.submissions:Submissions'
],
},
zip_safe=False,
)