Files
cibuildwheel/setup.py
T

47 lines
856 B
Python
Raw Normal View History

from setuptools import setup
2017-03-19 20:57:51 +00:00
2021-02-04 22:02:53 -05:00
extras = {
"docs": [
2021-02-12 11:08:43 -05:00
"mkdocs-include-markdown-plugin==2.8.0",
2021-02-04 22:02:53 -05:00
"mkdocs==1.0.4",
"pymdown-extensions",
"mkdocs-macros-plugin",
2021-02-04 22:02:53 -05:00
],
"test": [
"jinja2",
2021-06-12 11:40:33 -04:00
"pytest>=6",
2021-02-04 22:02:53 -05:00
"pytest-timeout",
],
2021-06-12 11:14:39 -04:00
"bin": [
2021-02-04 22:02:53 -05:00
"click",
"ghapi",
"pip-tools",
"pygithub",
"pyyaml",
"requests",
"rich>=9.6",
"packaging>=21.0",
2021-02-04 22:02:53 -05:00
],
2021-06-17 17:18:57 -04:00
"mypy": [
"mypy>=0.901",
"types-jinja2",
"types-certifi",
"types-toml",
"types-jinja2",
"types-pyyaml",
"types-click",
"types-requests",
"types-toml",
],
2021-02-04 22:02:53 -05:00
}
2021-06-12 11:14:39 -04:00
extras["dev"] = [
2021-06-17 17:18:57 -04:00
*extras["mypy"],
2021-06-12 11:14:39 -04:00
*extras["test"],
*extras["bin"],
]
2021-02-04 22:02:53 -05:00
extras["all"] = sum(extras.values(), [])
setup(extras_require=extras)