forked from binux/pyspider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
127 lines (103 loc) · 3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<[email protected]>
# http://binux.me
# Created on 2014-11-24 22:27:45
import sys
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
import pyspider
install_requires = [
'Flask==0.10',
'Jinja2==2.7',
'chardet==2.2.1',
'cssselect==0.9',
"lxml==4.3.3",
'pycurl==7.43.0.3',
'requests==2.2',
'Flask-Login==0.2.11',
'u-msgpack-python==1.6',
'click==3.3',
'six==1.10.0',
'tblib==1.4.0'
]
if sys.version_info >= (3, 0): # 3.*
install_requires.extend([
'wsgidav==2.3.0',
'tornado>=3.2,<=4.5.3',
'pyquery',
])
extras_require_all = [
'mysql-connector-python==8.0.16',
'pymongo==3.9.0',
'redis==2.10.6',
'redis-py-cluster==1.3.6',
'psycopg2==2.8.2',
'elasticsearch==2.3.0',
]
if sys.version_info >= (3, 0): # 3.*
extras_require_all.extend([
'kombu==4.4.0',
'amqp==2.4.0',
'SQLAlchemy==1.3.10',
'pika==1.1.0'
])
setup(
name='pyspider',
version=pyspider.__version__,
description='A Powerful Spider System in Python',
long_description=long_description,
url='https://github.com/binux/pyspider',
author='Roy Binux',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='scrapy crawler spider webui',
packages=find_packages(exclude=['data', 'tests*']),
install_requires=install_requires,
extras_require={
'all': extras_require_all,
'test': [
'coverage',
'httpbin<=0.5.0',
'pyproxy==0.1.6',
'easywebdav==1.2.0',
]
},
package_data={
'pyspider': [
'logging.conf',
'fetcher/phantomjs_fetcher.js',
'fetcher/splash_fetcher.lua',
'webui/static/*.js',
'webui/static/*.css',
'webui/templates/*'
],
},
entry_points={
'console_scripts': [
'pyspider=pyspider.run:main'
]
},
test_suite='tests.all_suite',
)