-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.2 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
43
44
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "notebook-tidy"
version = "0.1.0"
description = "CLI to clean Jupyter notebooks and extract reusable code into modules"
authors = [{name = "Notebook Tidy"}]
readme = "README.md"
license = {text = "Proprietary"}
keywords = ["jupyter", "notebook", "cleanup", "exports", "typer", "nbformat"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"nbformat>=5.9",
"pyyaml>=6.0",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"black>=24.4",
"pytest-cov>=4.1",
"ruff>=0.7",
"pre-commit>=3.7",
]
[project.scripts]
notebook-tidy = "notebook_tidy.cli:app"