forked from binux/pyspider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
99 lines (80 loc) · 2.47 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
#!/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
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
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 :: 3 - Alpha',
'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=[
'Flask>=0.10',
'Jinja2>=2.7',
'chardet>=2.2',
'cssselect>=0.9',
'lxml>=3.3.2',
'pycurl>=7.19',
'pyquery>=1.2',
'requests>=2.2',
'tornado>=3.2',
'Flask-Login>=0.2.11',
'u-msgpack-python>=1.6',
'click>=3.3',
'six>=1.8.0',
],
extras_require={
'all': [
'mysql-connector-python>=1.2.2',
'pika>=0.9.14',
'amqp>=1.3.0',
'pymongo>=2.7.2',
'unittest2>=0.5.1',
'SQLAlchemy>=0.9.7'
],
},
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',
)