* docs: support tabs * Get superfences working * Use an 'admonition' as a tab, add some styling * docs: reorder tabs and modernize * docs: tabbed options settings * docs: reorder to match order in other places * docs: correct the example * Apply suggestions from code review (lazy edits in GH :) ) * Update mkdocs-include-markdown-plugin and remove unneeded include option Co-authored-by: Joe Rickerby <joerick@mac.com>
32 lines
591 B
Python
32 lines
591 B
Python
from setuptools import setup
|
|
|
|
extras = {
|
|
"docs": [
|
|
"mkdocs-include-markdown-plugin==2.8.0",
|
|
"mkdocs==1.0.4",
|
|
"pymdown-extensions",
|
|
],
|
|
"test": [
|
|
"jinja2",
|
|
"pytest>=4",
|
|
"pytest-timeout",
|
|
],
|
|
"dev": [
|
|
"click",
|
|
"ghapi",
|
|
"mypy>=0.800",
|
|
"packaging>=20.8",
|
|
"pip-tools",
|
|
"pygithub",
|
|
"pyyaml",
|
|
"requests",
|
|
"rich>=9.6",
|
|
"typing-extensions",
|
|
],
|
|
}
|
|
|
|
extras["all"] = sum(extras.values(), [])
|
|
extras["dev"] += extras["test"]
|
|
|
|
setup(extras_require=extras)
|