-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name='scrapy-feedexporter-sftp',
version='1.0.4',
url='https://github.com/scrapy-plugins/scrapy-feedexporter-sftp',
description=(
'Scrapy extension Feed Exporter Storage Backend to export items to an '
'SFTP server'
),
long_description=open('README.rst').read(),
author='Scrapy developers',
license='BSD',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
classifiers=[
'Framework :: Scrapy',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Framework :: Scrapy',
],
install_requires=['paramiko>=1.16.0'],
requires=['scrapy (>=1.0.3)', 'paramiko (>=1.16.0)'],
)