forked from scrapinghub/shub-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1004 Bytes
/
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
# Automatically created by: shub deploy
from setuptools import setup, find_packages
setup(
name = 'shub-workflow',
version = '1.6.6',
description = 'Workflow manager for scrapinghub ScrapyCloud tasks.',
long_description = open('README.md').read(),
license = 'BSD',
url = 'https://github.com/scrapinghub/shub-workflow',
maintainer ='Scrapinghub',
packages = find_packages(),
install_requires = (
'pyyaml>=3.12',
'retrying>=1.3.3',
'scrapinghub[msgpack]>=2.3.1',
'jinja2>=2.7.3',
'sqlitedict==1.6.0',
's3fs==0.2.0',
'boto3>=1.9.92',
),
scripts = [],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)