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
|
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx-examples"
authors = [{name = "Executable Book Project", email = "executablebooks@gmail.com"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]
keywords = [
"documentation",
"sphinx",
]
dynamic = ["description", "version"]
requires-python = ">=3.7"
dependencies = [
"sphinx>4",
"sphinx-design",
]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://executablebooks.org/"
Documentation = "https://executablebooks.org/"
Funding = "https://executablebooks.org"
Source = "https://github.com/executablebooks/sphinx-examples/"
Tracker = "https://github.com/executablebooks/sphinx-examples/issues"
[project.optional-dependencies]
sphinx = [
"sphinx-book-theme",
"sphinx-copybutton",
"myst-parser",
# Extra theme dependencies to test
"sphinx-rtd-theme",
"furo",
]
[tool.flit.module]
name = "sphinx_examples"
[tool.flit.sdist]
include = [
"src/sphinx_examples/_static/"
]
exclude = [
".*", # Any hidden folders or files
"docs/",
"tests/",
"scripts/",
"tox.ini",
"codecov.yml",
"conftest.py",
]
[tool.isort]
profile = "black"
|