forked from scrapinghub/shub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.61 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
from __future__ import absolute_import
import io
import os
from setuptools import setup, find_packages
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'shub', '__init__.py'),
mode='r', encoding='utf-8') as f:
exec(f.read(), about)
setup(
name='shub',
version='2.7.0',
packages=find_packages(exclude=('tests', 'tests.*')),
url=about['DOCS_LINK'],
description='Scrapinghub Command Line Client',
long_description=open('README.rst').read(),
author='Scrapinghub',
author_email='info@scrapinghub.com',
maintainer='Scrapinghub',
maintainer_email='info@scrapinghub.com',
license='BSD',
entry_points={
'console_scripts': ['shub = shub.tool:cli']
},
include_package_data=True,
zip_safe=False,
install_requires=[
'click',
'docker-py',
'pip',
'PyYAML',
'retrying',
'requests',
'scrapinghub>=1.9.0',
'six>=1.7.0',
'tqdm',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Internet :: WWW/HTTP',
],
)