-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nionswift-ipython-kernel"
version = "0.1.2"
authors = [
{ name = "Nion Software", email = "swift@nion.com" }
]
description = "An iPython kernel for Nion Swift."
readme = "README.rst"
requires-python = ">=3.12"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
urls = { "Homepage" = "https://github.com/nion-software/nionswift-ipython-kernel" }
dependencies = [
"pyzmq",
"nionutils >=4.14.0,<5.0.0",
"nionswift >=16.16,<17.0"
]
[tool.setuptools.packages.find]
include = ["nion", "nion.ipython_kernel", "nionswift_plugin", "nionswift_plugin.ipython_kernel_extension"]
[tool.pytest.ini_options]
testpaths = [
"nion/ipython_kernel"
]