-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.cfg
126 lines (116 loc) · 3.02 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[metadata]
name = myst-nb
version = attr: myst_nb.__version__
description = A Jupyter Notebook Sphinx reader built on top of the MyST markdown parser.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/executablebooks/myst-nb
author = ExecutableBookProject
author_email = chrisj_sewell@hotmail.com
license = BSD-3-Clause
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: BSD License
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup
keywords =
markdown
lexer
parser
jupyter
docutils
sphinx
project_urls =
Documentation=https://myst-nb.readthedocs.io
[options]
packages = find:
install_requires =
docutils>=0.15,<0.18
importlib_metadata
ipython
ipywidgets>=7.0.0,<8
jupyter-cache~=0.4.1
jupyter_sphinx~=0.3.2
myst-parser~=0.15.2
nbconvert>=5.6,<7
nbformat~=5.0
pyyaml
sphinx>=3.1,<5
sphinx-togglebutton~=0.3.0
python_requires = >=3.6
include_package_data = True
zip_safe = True
[options.packages.find]
exclude =
test*
[options.entry_points]
myst_nb.mime_render =
default = myst_nb.render_outputs:CellOutputRenderer
inline = myst_nb.render_outputs:CellOutputRendererInline
# pygments.lexers =
# myst_ansi = myst_nb.ansi_lexer:AnsiColorLexer
[options.extras_require]
code_style =
pre-commit~=2.12
rtd =
alabaster
altair
bokeh
coconut~=1.4.3
ipykernel~=5.5
ipywidgets
jupytext~=1.11.2
matplotlib
numpy
pandas
plotly
sphinx-book-theme~=0.1.0
sphinx-copybutton
sphinx-panels~=0.4.1
sphinxcontrib-bibtex
sympy
testing =
coverage<5.0
ipykernel~=5.5
# ipython v8 is only available for Python 3.8+, and it changes exception text
ipython<8
jupytext~=1.11.2
# TODO: 3.4.0 has some warnings that need to be fixed in the tests.
matplotlib~=3.3.0
numpy
# TODO: 1.4.0 has some warnings that need to be fixed in the tests.
pandas<1.4
pytest~=5.4
pytest-cov~=2.8
pytest-regressions
sympy
[flake8]
max-line-length = 100
extend-ignore = E203
[mypy]
show_error_codes = true
check_untyped_defs = true
strict_equality = true
no_implicit_optional = true
warn_unused_ignores = true
[mypy-myst_nb.*]
; can only follow these imports when more of the code is typed
follow_imports = skip
[mypy-docutils.*]
ignore_missing_imports = True
[mypy-jupyter_sphinx.*]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True