style: use bin extra

This commit is contained in:
Henry Fredrick Schreiner
2021-06-12 11:14:39 -04:00
parent 31770e9ac7
commit 74466fb69d
2 changed files with 10 additions and 7 deletions
+8 -5
View File
@@ -11,21 +11,24 @@ extras = {
"pytest>=4",
"pytest-timeout",
],
"dev": [
"bin": [
"click",
"ghapi",
"mypy>=0.800",
"packaging>=20.8",
"pip-tools",
"pygithub",
"pyyaml",
"requests",
"rich>=9.6",
"typing-extensions",
"packaging>=20.8",
],
}
extras["dev"] = [
"mypy>=0.800",
*extras["test"],
*extras["bin"],
]
extras["all"] = sum(extras.values(), [])
extras["dev"] += extras["test"]
setup(extras_require=extras)