diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-03-22 02:48:38 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-03-22 03:21:22 +0800 |
commit | c8da16568f528b796a35ad9550df7c5e62c66822 (patch) | |
tree | a91f51157a19043722298c7bb4ed773d7336e097 /textproc/py-sphinx-design/files/setup.py | |
parent | textproc/py-sphinx-book-theme: Unbreak this port after a7a3ac5596fdb27fb974c7... (diff) |
textproc/py-sphinx-design: Convert to USE_PYTHON=pep517
- Bump PORTREVISION for dependency and package change
Diffstat (limited to 'textproc/py-sphinx-design/files/setup.py')
-rw-r--r-- | textproc/py-sphinx-design/files/setup.py | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/textproc/py-sphinx-design/files/setup.py b/textproc/py-sphinx-design/files/setup.py deleted file mode 100644 index baed625e996f..000000000000 --- a/textproc/py-sphinx-design/files/setup.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env python -# setup.py generated by flit for tools that don't yet use PEP 517 - -from distutils.core import setup - -packages = \ -['sphinx_design', 'sphinx_design.compiled'] - -package_data = \ -{'': ['*']} - -install_requires = \ -['sphinx>=4,<6'] - -extras_require = \ -{'code_style': ['pre-commit~=2.12'], - 'rtd': ['myst-parser~=0.18.0'], - 'testing': ['myst-parser~=0.18.0', - 'pytest~=7.1', - 'pytest-cov', - 'pytest-regressions'], - 'theme_furo': ['furo>=2022.06.04,<2022.07'], - 'theme_pydata': ['pydata-sphinx-theme~=0.9.0'], - 'theme_rtd': ['sphinx-rtd-theme~=1.0'], - 'theme_sbt': ['sphinx-book-theme~=0.3.0']} - -setup(name='sphinx_design', - version='%%PORTVERSION%%', - description='A sphinx extension for designing beautiful, view size responsive web components.', - author=None, - author_email='Chris Sewell <chrisj_sewell@hotmail.com>', - url=None, - packages=packages, - package_data=package_data, - install_requires=install_requires, - extras_require=extras_require, - python_requires='>=3.7', - ) |