summaryrefslogtreecommitdiff
path: root/textproc/py-sphinx-examples/files/setup.py
blob: fb35dbe8da5a3d90ddc0f418907c463b03d286bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/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_examples']

package_data = \
{'': ['*'], 'sphinx_examples': ['_static/*', '_static/styles/*']}

package_dir = \
{'': 'src'}

install_requires = \
['sphinx>4', 'sphinx-design']

extras_require = \
{'sphinx': ['sphinx-book-theme',
            'sphinx-copybutton',
            'myst-parser',
            'sphinx-rtd-theme',
            'furo']}

setup(name='sphinx-examples',
      version='%%PORTVERSION%%',
      description='A lightweight example directive to make it easy to demonstrate code / results.',
      author=None,
      author_email='Executable Book Project <executablebooks@gmail.com>',
      url=None,
      packages=packages,
      package_data=package_data,
      package_dir=package_dir,
      install_requires=install_requires,
      extras_require=extras_require,
      python_requires='>=3.7',
     )