-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.33 KB
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
[project]
name = "sphinxcontrib-repl"
description = "Sphinx Extension - Directives to auto-evaluate Python code-blocks"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["sphinx", "autoeval", "doctest-block"]
authors = [{name = "Takeshi Ikuma", email="tikuma@lsuhsc.edu"}]
license = { text = "GPL-2.0 License" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Utilities"
]
dependencies = ["docutils"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/sphinx-contrib/repl"
Discussions = "https://github.com/sphinx-contrib/repl/discussions"
Issues = "https://github.com/sphinx-contrib/repl/issues"
PullRequests = "https://github.com/sphinx-contrib/repl/pulls"
[project.optional-dependencies]
mpl = ["matplotlib"]
[build-system]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.dynamic]
version = {attr = "sphinxcontrib.repl.__version__"}