-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.66 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
[build-system]
requires = ["hatchling>=1.5"]
build-backend = "hatchling.build"
[project]
name = "jupyter-console"
dynamic = ["version"]
description = "Jupyter terminal console"
readme = "README.md"
license = { file= "LICENSE" }
requires-python = ">=3.7"
authors = [
{ name = "Jupyter Development Team", email = "[email protected]" },
]
keywords = [
"Interactive",
"Interpreter",
"Shell",
"Web",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"ipykernel>=6.14",
"ipython",
"jupyter_client>=7.0.0",
"jupyter_core>=4.12,!=5.0.*",
"prompt_toolkit>=3.0.30",
"pygments",
"pyzmq>=17",
"traitlets>=5.4",
]
[project.optional-dependencies]
test = [
"pexpect",
"pytest",
"flaky",
]
[project.scripts]
jupyter-console = "jupyter_console.app:main"
[project.urls]
Homepage = "https://jupyter.org"
[tool.hatch.version]
path = "jupyter_console/_version.py"
[tool.pytest.ini_options]
addopts = "--durations=10"
[tool.flake8]
max-line-length = "99"
ignore = "W291, E266, E265, E128, E251, E402, E124, E302, W293, E231, E222, W503, E126, E121, W391, E226, E127, W504"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
follow_imports = "silent"