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 = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "nbstripout"
version = "0.9.0"
description = "Strips outputs from Jupyter and IPython notebooks"
keywords = ["jupyter", "notebook", "ipython", "git", "filter", "hooks"]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [
{name = "Florian Rathgeber", email = "florian.rathgeber@gmail.com"}
]
maintainers = [
{name = "Florian Rathgeber", email = "florian.rathgeber@gmail.com"}
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Version Control",
]
dependencies = [
"nbformat"
]
[project.urls]
Homepage = "https://pypi.org/project/nbstripout"
Repository = "https://github.com/kynan/nbstripout"
[project.scripts]
nbstripout = "nbstripout._nbstripout:main"
[tool.bumpversion]
current_version = "0.9.0"
commit = true
tag = true
tag_name = "{new_version}"
tag_message = "v{new_version}"
[[tool.bumpversion.files]]
filename = "CONTRIBUTING.md"
[[tool.bumpversion.files]]
filename = "README.md"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "nbstripout/_nbstripout.py"
[tool.ruff]
line-length = 120
indent-width = 4
extend-exclude = ["*.ipynb"]
[tool.ruff.format]
quote-style = "single"
|