-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
41 lines (38 loc) · 827 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]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[scripts]
dist-check = "twine check dist/*"
dist = "python -c 'import setuptools; setuptools.setup()' -- bdist_wheel"
lint-check = "flakehell lint github_labels"
[dev-packages]
flake8-2020 = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-eradicate = "*"
flake8-isort = "*"
flake8-mutable = "*"
flake8-pep3101 = "*"
flake8-quotes = "*"
flake8-return = "*"
flake8-rst-docstrings = "*"
flake8-simplify = "*"
flake8-use-fstring = "*"
flake8-variables-names = "*"
flakehell = "*"
hypothesis = "*"
isort = ">= 5.4"
mccabe = "*"
github_labels = { path = ".", editable = true }
pycodestyle = "*"
pylint = "*"
setuptools = "*"
twine = "*"
[packages]
click = "~= 8.0"
exitstatus = "*"
PyGithub = "*"
PyYAML = "*"
ycfg = "*"