Files
bec/bec_ipython_client/pyproject.toml
T
semantic-release bb7194f758 3.122.4
Automatically generated by python-semantic-release
2026-05-18 18:34:17 +00:00

81 lines
1.4 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bec_ipython_client"
version = "3.122.4"
description = "BEC IPython client"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"bec-lib~=3.0",
"ipython~=8.22",
"numpy>=1.24, <3.0",
"pyepics~=3.5",
"requests~=2.31",
"rich>=13.7,<16.0",
]
[project.optional-dependencies]
dev = [
"black~=26.0",
"coverage~=7.0",
"isort~=5.13, >=5.13.2",
"pylint>=3,<5",
"pytest-bec-e2e~=3.0",
"pytest-random-order~=1.1",
"pytest-redis>=3.1,<5.0",
"pytest-retry~=1.1",
"pytest-timeout~=2.2",
"pytest>=8,<10",
]
[project.scripts]
bec = "bec_ipython_client.main:main"
[project.urls]
"Bug Tracker" = "https://github.com/bec-project/bec/issues"
Homepage = "https://github.com/bec-project/bec"
[tool.hatch.build.targets.wheel]
include = ["*"]
[tool.black]
line-length = 100
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
known_first_party = ["bec_lib", "bec_server", "bec_ipython_client"]
[tool.ruff]
line-length = 100
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
known-first-party = [
"bec_lib",
"bec_server",
"bec_ipython_client",
]