-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 1.23 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
from setuptools import setup, find_packages
setup(
name='spider-feeder',
version='0.3.0',
url='https://github.com/ejulio/spider-feeder',
author='Júlio César Batista',
author_email='[email protected]',
description='spider-feeder is a library to help loading inputs to scrapy spiders.',
long_description='spider-feeder is a library to help loading inputs to scrapy spiders.',
license='MIT',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=['scrapy'],
tests_require=['scrapy', 'pytest', 'pytest-mock'],
extras_require={
's3': ['botocore'],
'collections': ['python-scrapinghub'],
'pep8': ['flake8'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)