forked from binux/pyspider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
124 lines (101 loc) · 2.8 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
#!/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',
'cssselect>=0.9',
'lxml',
'pycurl',
'pyquery',
'requests>=2.2',
'tornado>=3.2',
'Flask-Login>=0.2.11',
'u-msgpack-python>=1.6',
'click>=3.3',
'six',
]
if sys.version_info < (3, 0):
install_requires.extend([
'wsgidav',
])
extras_require_all = [
'mysql-connector-python>=1.2.2',
'amqp>=1.3.0',
'pymongo>=2.7.2',
'SQLAlchemy>=0.9.7',
'redis',
'kombu',
'psycopg2',
'elasticsearch',
]
if sys.version_info < (3, 0):
extras_require_all.extend([
'pika>=0.9.14',
'beanstalkc',
])
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 :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'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': [
'unittest2>=0.5.1',
'coverage',
'httpbin',
'pyproxy>=0.1.6',
'easywebdav',
]
},
package_data={
'pyspider': [
'logging.conf',
'fetcher/phantomjs_fetcher.js',
'webui/static/*',
'webui/templates/*'
],
},
entry_points={
'console_scripts': [
'pyspider=pyspider.run:main'
]
},
test_suite='tests.all_suite',
)