diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-06-10 07:12:10 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-06-10 07:16:12 +0800 |
commit | 1aeea0798f25ff2e915a5eddcd4c41916c44ed7a (patch) | |
tree | 5064f0dd0fb0bc15346d285fef70c1096d326156 /textproc/py-furo/files/setup.py | |
parent | textproc/py-anyascii: Convert to USE_PYTHON=pytest (diff) |
textproc/py-furo: Update to 2022.4.7
Changes: https://github.com/pradyunsg/furo/blob/main/docs/changelog.md
Diffstat (limited to 'textproc/py-furo/files/setup.py')
-rw-r--r-- | textproc/py-furo/files/setup.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/textproc/py-furo/files/setup.py b/textproc/py-furo/files/setup.py index def8898448c6..1b7b25890ab5 100644 --- a/textproc/py-furo/files/setup.py +++ b/textproc/py-furo/files/setup.py @@ -18,6 +18,7 @@ package_data = \ 'assets/styles/variables/*', 'theme/*', 'theme/furo/*', + 'theme/furo/components/*', 'theme/furo/partials/*', 'theme/furo/sidebar/*', 'theme/furo/static/*']} @@ -28,13 +29,6 @@ package_dir = \ install_requires = \ ['beautifulsoup4', 'sphinx ~= 4.0', 'pygments ~= 2.7'] -extras_require = \ -{'doc': ['myst-parser', - 'sphinx-copybutton', - 'sphinx-design', - 'sphinx-inline-tabs'], - 'test': ['pytest', 'pytest-cov', 'pytest-xdist']} - entry_points = \ {'sphinx.html_themes': ['furo = furo']} @@ -48,7 +42,6 @@ setup(name='furo', package_data=package_data, package_dir=package_dir, install_requires=install_requires, - extras_require=extras_require, entry_points=entry_points, python_requires='>=3.6', ) |