-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathPipfile
47 lines (44 loc) · 849 Bytes
/
Pipfile
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
[[source]]
name = "pypi"
verify_ssl = true
url = "https://pypi.douban.com/simple/"
[packages]
# Common
pymongo = "*"
html5lib = "*"
bs4 = "*"
cchardet = "*"
readability-lxml = "*"
html2text = "*"
requests = "*"
jieba = "*"
pytz = "*"
# Schedule
ruia = ">=0.8.3"
ruia-ua = "*"
xmltodict = "*"
schedule = "*"
feedgen = "*"
pygithub = "*"
feedparser = "*"
[dev-packages]
black = "*"
isort = "*"
pylint = "*"
pytest = "*"
pandas = "*"
numpy = "*"
pypinyin = "*"
playwright = "*"
flask = "==2.0.2"
gunicorn = "==20.1.0"
gevent = "==21.12.0"
flask-jwt-extended = "==4.3.1"
pyexecjs = "*"
[scripts]
local_schedule = "bash ./start.sh schedule local"
dev_schedule = "bash ./start.sh schedule dev"
pro_schedule = "bash ./start.sh schedule pro"
local_api = "bash ./start.sh api local"
dev_api = "bash ./start.sh api dev"
pro_api = "bash ./start.sh api pro"