-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (30 loc) · 1014 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="hcf-backend",
version="0.5.2.5",
description="ScrapyCloud HubStorage frontier backend for Frontera",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="BSD",
url="https://github.com/scrapinghub/hcf-backend",
maintainer="Scrapinghub",
packages=find_packages(),
install_requires=(
"frontera==0.7.1",
"humanize==0.5.1",
"requests>=2.18.4",
"retrying>=1.3.3",
"scrapinghub>=2.0.0",
"shub-workflow>=1.10.20",
),
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",
"Programming Language :: Python :: 3.8",
],
)