-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathsetup.py
56 lines (52 loc) · 1.57 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
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='3.0.0',
packages=find_packages(exclude=('tests', 'tests.*')),
url=about['DOCS_LINK'],
description='Scrapinghub Command Line Client',
long_description=open('README.rst').read(),
author='Scrapinghub',
maintainer='Scrapinghub',
license='BSD',
entry_points={
'console_scripts': ['shub = shub.tool:cli']
},
include_package_data=True,
zip_safe=False,
install_requires=[
'click>=7.0',
'docker',
'pyyaml',
'retrying',
'requests',
'scrapinghub>=2.3.1',
'six>=1.7.0',
'tqdm',
'toml',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Internet :: WWW/HTTP',
],
)