Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
75 lines (66 loc) · 1.9 KB

File metadata and controls

75 lines (66 loc) · 1.9 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# -*- coding: utf-8 -*-
"""
Created on 2020/4/22 10:45 PM
---------
@summary:
---------
@author: Boris
@email: boris_liu@foxmail.com
"""
from os.path import dirname, join
from sys import version_info
import setuptools
if version_info < (3, 6, 0):
raise SystemExit("Sorry! feapder requires python 3.6.0 or later.")
with open(join(dirname(__file__), "feapder/VERSION"), "rb") as f:
version = f.read().decode("ascii").strip()
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_packages()
packages.extend(
[
"feapder",
"feapder.templates",
"feapder.templates.project_template",
"feapder.templates.project_template.spiders",
"feapder.templates.project_template.items",
]
)
requires = [
"better-exceptions>=0.2.2",
"DBUtils>=2.0",
"parsel>=1.5.2",
"PyExecJS>=1.5.1",
"PyMySQL>=0.9.3",
"redis>=2.10.6",
"requests>=2.22.0",
"bs4>=0.0.1",
"ipython>=7.14.0",
"redis-py-cluster>=2.1.0",
"cryptography>=3.3.2",
"selenium>=3.141.0",
"pymongo>=3.10.1",
"urllib3>=1.25.8",
"loguru>=0.5.3",
"influxdb>=5.3.1",
]
memory_dedup_requires = ["bitarray>=1.5.3"]
all_requires = memory_dedup_requires
setuptools.setup(
name="feapder",
version=version,
author="Boris",
license="MIT",
author_email="feapder@qq.com",
python_requires=">=3.6",
description="feapder是一款支持分布式、批次采集、任务防丢、报警丰富的python爬虫框架",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requires,
extras_require={"all": all_requires},
entry_points={"console_scripts": ["feapder = feapder.commands.cmdline:execute"]},
url="https://github.com/Boris-code/feapder.git",
packages=packages,
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.