-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
117 lines (107 loc) · 2.99 KB
/
pyproject.toml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["hatchling>=1.21.1"]
build-backend = "hatchling.build"
[project]
name = "jpterm"
version = "0.2.19"
description = "Jupyter in the terminal"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [ { name = "David Brochart", email = "[email protected]" }, ]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = [
"jupyter",
"textual",
]
dependencies = [
"rich-click >=1.6.0",
"txl ==0.2.19",
"txl_cell ==0.2.14",
"txl_console ==0.2.16",
"txl_editors ==0.2.14",
"txl_file_browser ==0.2.14",
"txl_image_viewer ==0.2.14",
"txl_jpterm ==0.2.14",
"txl_kernel ==0.2.14",
"txl_local_contents ==0.2.14",
"txl_local_terminals ==0.2.14",
"txl_local_kernels ==0.2.14",
"txl_notebook_editor ==0.2.14",
"txl_remote_contents ==0.2.14",
"txl_remote_terminals ==0.2.14",
"txl_remote_kernels ==0.2.14",
"txl_text_editor ==0.2.14",
"txl_markdown_viewer ==0.2.14",
"txl_terminal ==0.2.14",
"txl_launcher ==0.2.14",
"txl_widgets ==0.2.15",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
]
[project.scripts]
jpterm = "jpterm.cli:main"
[project.urls]
Homepage = "https://github.com/davidbrochart/jpterm"
[tool.hatch.envs.docs]
features = ["docs"]
[tool.hatch.envs.docs.scripts]
build = "mkdocs build --clean --strict"
serve = "mkdocs serve --dev-addr localhost:8000"
[tool.hatch.envs.dev]
pre-install-commands = [
"pip install pre-commit",
"pip install textual",
"pip install textual-dev",
"pip install -e ./txl",
"pip install -e ./plugins/cell",
"pip install -e ./plugins/console",
"pip install -e ./plugins/editors",
"pip install -e ./plugins/file_browser",
"pip install -e ./plugins/image_viewer",
"pip install -e ./plugins/jpterm",
"pip install -e ./plugins/kernel",
"pip install -e ./plugins/local_contents",
"pip install -e ./plugins/local_terminals",
"pip install -e ./plugins/local_kernels",
"pip install -e ./plugins/notebook_editor",
"pip install -e ./plugins/remote_contents",
"pip install -e ./plugins/remote_terminals",
"pip install -e ./plugins/remote_kernels",
"pip install -e ./plugins/text_editor",
"pip install -e ./plugins/markdown_viewer",
"pip install -e ./plugins/terminal",
"pip install -e ./plugins/launcher",
"pip install -e ./plugins/widgets",
'pip install "jupyterlab>=4"',
'pip install "jupyter-collaboration >=2"',
]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
# "UP",
# flake8-bugbear
# "B",
# flake8-simplify
# "SIM",
# isort
"I",
]
[tool.ruff]
line-length = 100