corrscope/pyproject.toml

55 wiersze
1.3 KiB
TOML
Czysty Zwykły widok Historia

# https://github.com/sdispater/poetry/issues/826 "conflict with the backend dependencies" with pip 19
# This bug seems to be fixed, on the latest versions of pip and poetry.
# But keep this commented just in case.
#[build-system]
#requires = ["poetry>=0.12"]
#build-backend = "poetry.masonry.api"
2018-12-20 22:38:30 +00:00
[tool.poetry]
name = "corrscope"
2020-11-18 00:25:08 +00:00
version = "0.7.0"
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.6.2"
"ruamel.yaml" = "^0.17"
2018-12-20 22:38:30 +00:00
numpy = "^1.15"
click = "^8.0.1"
matplotlib = "^3.1"
attrs = "^21.2.0"
PyQt5 = "^5.15.4"
appdirs = "^1.4.4"
atomicwrites = "^1.4.0"
2018-12-20 22:38:30 +00:00
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-mock = "^3.6.1"
hypothesis = "^6.14.0"
delayed-assert = "^0.3.5"
pyinstaller = "^4.3"
pefile = {version = "^2021.5.24", platform = "win32"}
coverage = "^5.5"
pytest-cov = "^2.12.1"
codecov = "^2.1.11"
pytest-cases = "^3.6.1"
black = "^21.6b0"
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/'