forked from scrapinghub/shub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.07 KB
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
from setuptools import setup
setup(
name='shub',
version='1.4.0',
packages=['shub'],
url='https://doc.scrapinghub.com/shub.html',
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', 'requests', 'six', 'hubstorage', 'scrapinghub'],
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',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Internet :: WWW/HTTP',
],
test_suite='tests',
tests_require=['mock']
)