Files
cibuildwheel/setup.py
T

39 lines
693 B
Python
Raw Normal View History

from __future__ import annotations
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",
2022-08-16 22:53:11 +01:00
"mkdocs==1.3.1",
"jinja2>=3.1.2",
2021-02-04 22:02:53 -05:00
"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",
"pytest-xdist",
2022-04-01 16:50:01 +01:00
"build",
2022-06-27 23:40:41 -04:00
"tomli_w",
"validate-pyproject",
2021-02-04 22:02:53 -05:00
],
2021-06-12 11:14:39 -04:00
"bin": [
2021-02-04 22:02:53 -05:00
"click",
"pip-tools",
"pygithub",
"pyyaml",
"requests",
"rich>=9.6",
"packaging>=21.0",
2021-02-04 22:02:53 -05:00
],
}
2021-06-12 11:14:39 -04:00
extras["dev"] = [
*extras["test"],
*extras["bin"],
]
2021-02-04 22:02:53 -05:00
setup(extras_require=extras)