File: pyproject.toml

package info (click to toggle)
python-nbstripout 0.9.0-1~exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 464 kB
  • sloc: python: 1,068; sh: 20; makefile: 13
file content (74 lines) | stat: -rw-r--r-- 1,906 bytes parent folder | download | duplicates (2)
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"