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
|
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinxcontrib-video"
version = "0.4.1"
description = "Allows embedding of HTML5 videos in sphinx"
requires-python = ">=3.6.9"
dependencies = ["sphinx"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation",
"Topic :: Utilities",
]
[[project.authors]]
name = "Raphael Massabot"
email = "rmassabot@gmail.com"
[project.license]
text = "Apache Software License"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
repository = "https://github.com/sphinx-contrib/video"
[project.optional-dependencies]
dev = [
"nox",
"pre-commit",
"mypy",
]
test = [
"pytest",
"beautifulsoup4",
"pytest-regressions",
"pytest-cov",
"defusedxml",
]
doc = [
"sphinx < 8",
"pydata-sphinx-theme",
"sphinx-design",
]
[tool.setuptools]
include-package-data = false
license-files = ["LICENSE"]
packages = ["sphinxcontrib.video"]
[tool.ruff]
ignore-init-module-imports = true
fix = true
select = ["E", "F", "W", "I", "D", "RUF"]
ignore = ["E501"] # line too long | Black take care of it
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
"setup.py" = ["D100"] # nothing to see there
[tool.coverage.run]
source = ["sphinxcontrib.video"]
[tool.mypy]
scripts_are_modules = true
ignore_missing_imports = true
install_types = true
non_interactive = true
warn_redundant_casts = true
[tool.commitizen]
changelog_incremental = false
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = false
version = "0.4.1"
version_files = [
"pyproject.toml:version",
"docs/conf.py:release",
"sphinxcontrib/video.py:__version__"
]
|