-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPipfile
51 lines (48 loc) · 787 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
48
49
50
51
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
# build and release
setuptools = "*"
build = "*"
twine = "*"
# virtual env management
tox = "*"
tox-gh-actions = "*" # ci/cd
# lint
autopep8 = "*"
flake8 = "*"
# unit tests
parameterized = "*"
pytest = "*"
pytest-cov = "*"
coverage = "*"
# docs related
sphinx = "*"
sphinx-click = "*"
# others
pillow = "*"
tomli = "*"
[packages]
# logging
loguru = "*"
# configuration
dacite = "*"
yamale = "*"
# CLI
click = "*"
# TUI
asciimatics = "*"
urwid = "*"
# Utility
first = "*"
overrides = "*"
# JSONPath
antlr4-python3-runtime = "*"
jsonpath-ng = "*"
# others
pyperclip = "*"
[scripts]
# this is a workaround for autopep8 does not get softlink correctly when install
autopep8 = "python -m autopep8"