corrscope/pyproject.toml

65 wiersze
1.7 KiB
TOML
Czysty Zwykły widok Historia

# Right now, `pip install [--editable] .` and `pipx install .` work,
# but `pipx install --editable .` fails with message
# "No apps associated with package UNKNOWN or its dependencies."
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2018-12-20 22:38:30 +00:00
[tool.poetry]
name = "corrscope"
2023-12-09 04:16:11 +00:00
version = "0.9.0-pre"
2020-03-21 08:07:49 +00:00
description = "Python program to render wave files into oscilloscope views, featuring advanced correlation-based triggering algorithm"
2018-12-20 22:38:30 +00:00
license = "BSD-2-Clause"
2020-03-21 08:07:49 +00:00
authors = ["nyanpasu64 <nyanpasu64@tuta.io>"]
# maintainers =
readme = "README.md"
# homepage =
repository = "https://github.com/corrscope/corrscope/"
documentation = "https://corrscope.github.io/corrscope/"
2018-12-20 22:38:30 +00:00
[tool.poetry.dependencies]
python = "^3.8"
"ruamel.yaml" = "^0.17"
2022-03-08 10:35:35 +00:00
numpy = "^1.21"
click = "^8.0.1"
matplotlib = "^3.1"
attrs = "^21.2.0"
appdirs = "^1.4.4"
atomicwrites = "^1.4.0"
2020-04-21 03:55:30 +00:00
colorspacious = "^1.1.2"
QtPy = "^2.0.1"
PyQt5 = {version = "^5.15", optional = true}
PyQt5-Qt5 = {version = "^5.15,!=5.15.11", optional = true}
PyQt6 = {version = "^6.2", optional = true}
appnope = "^0.1.3"
[tool.poetry.extras]
qt5 = ["PyQt5", "PyQt5-Qt5"]
qt6 = ["PyQt6"]
2018-12-20 22:38:30 +00:00
[tool.poetry.dev-dependencies]
2022-03-08 03:31:52 +00:00
pytest = "^7"
pytest-mock = "^3.6.1"
hypothesis = "^6.14.0"
delayed-assert = "^0.3.5"
# Note: PyInstaller 4.5 and below claim to support all Python versions,
# and 4.6 and above have maximum Python versions.
# When upgrading the version of Python (not PyInstaller) used to create binaries,
# increase the `python = ""` bound.
pyinstaller = {version = "^4.3", python = "<3.11"}
pefile = {version = "^2021.5.24", platform = "win32"}
pytest-cases = "^3.6.1"
black = "^22"
2018-12-20 22:38:30 +00:00
[tool.poetry.scripts]
corr = 'corrscope.cli:main'
2019-01-07 01:06:38 +00:00
[tool.black]
line-length = 88
py36 = true
exclude = 'utils/scipy/'