forked from shidenggui/easytrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
41 lines (37 loc) · 747 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
[[source]]
url = "http://mirrors.aliyun.com/pypi/simple/"
verify_ssl = false
name = "pypi"
[packages]
pywinauto = "*"
"bs4" = "*"
requests = "*"
dill = "*"
click = "*"
six = "*"
flask = "*"
pillow = "*"
pytesseract = "*"
pandas = "*"
pyperclip = "*"
rqopen-client = ">=0.0.5"
easyutils = "*"
[dev-packages]
pytest-cov = "*"
pre-commit = "*"
pytest = "*"
pylint = "*"
mypy = "*"
isort = "*"
black = "==18.6b4"
ipython = "*"
better-exceptions = "*"
[requires]
python_version = "3.6"
[scripts]
sort_imports = "bash -c 'isort \"$@\"; git add -u' --"
format = "bash -c 'black -l 79 \"$@\"; git add -u' --"
lint = "pylint"
type_check = "mypy"
test = "bash -c 'pytest -vx --cov=easytrader tests'"
lock = "bash -c 'pipenv lock -r > requirements.txt'"