forked from binux/pyspider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (67 loc) · 2.29 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<roy@binux.me>
# 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='roy@binux.me',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.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=[
'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',
],
extras_require={
'all': [
'mysql-connector-python>=1.2.2',
'pika>=0.9.14',
'pymongo>=2.7.2',
'unittest2>=0.5.1'
],
},
package_data={
'pyspider': ['logging.conf', 'webui/static/*', 'webui/templates/*'],
},
entry_points={
'console_scripts': [
'pyspider=pyspider.run:main'
]
}
)