File: pyproject.toml

package info (click to toggle)
spyder-kernels 3.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,088 kB
  • sloc: python: 6,327; sh: 9; makefile: 5
file content (74 lines) | stat: -rw-r--r-- 1,942 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"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
version = {attr = "spyder_kernels._version.__version__"}

[tool.setuptools.packages.find]
exclude = ["docs", "*tests"]

[project]
name = "spyder-kernels"
dynamic = ["version"]
description = "Jupyter kernels for Spyder's console"
keywords = ["spyder jupyter kernel ipython console"]
readme = "README.md"
authors = [
    {name = "Spyder Development Team", email = "spyderlib@googlegroups.com"},
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Framework :: IPython",
    "Framework :: Jupyter",
    "Intended Audience :: Developers",
    "Operating System :: OS Independent",
    "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.9",
    "Topic :: Software Development :: Interpreters",
]
requires-python = ">=3.9"
dependencies = [
    "cloudpickle",
    "ipykernel>=6.29.3,<7",
    "ipython>=8.15.0,<10,!=8.17.1,!=9.1.0,!=9.2.0,!=9.3.0,!=9.4.0",
    "jupyter-client>=7.4.9,<9",
    "packaging",
    "pyxdg>=0.26;platform_system=='Linux'",
    "pyzmq>=24.0.0",
    # We need at least this version of traitlets to fix an error when setting
    # the Matplotlib inline backend formats.
    # Fixes spyder-ide/spyder#24390
    "traitlets>=5.14.3",
    "wurlitzer>=1.0.3;platform_system!='Windows'",
]
license = "MIT"

[project.urls]
Homepage = "https://github.com/spyder-ide/spyder-kernels"

[project.optional-dependencies]
test = [
    "anyio",
    "cython",
    "dask[distributed]",
    "django",
    "flaky",
    "h5py",
    "matplotlib",
    "mock",
    "numpy",
    "pandas",
    "pillow",
    "polars",
    "pyarrow",
    "pydicom",
    "pytest",
    "pytest-cov",
    "scipy",
    "xarray",
]