2019-03-13 05:49:45 +00:00
|
|
|
#https://github.com/sdispater/poetry/issues/826
|
|
|
|
#> "conflict with the backend dependencies" with pip 19
|
|
|
|
#[build-system]
|
|
|
|
#requires = ["poetry>=0.12"]
|
|
|
|
#build-backend = "poetry.masonry.api"
|
2019-02-15 09:52:03 +00:00
|
|
|
|
2018-12-20 22:38:30 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "corrscope"
|
2020-04-19 23:52:05 +00:00
|
|
|
version = "0.6.2-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.6"
|
2019-08-20 07:06:09 +00:00
|
|
|
"ruamel.yaml" = "^0.16"
|
2018-12-20 22:38:30 +00:00
|
|
|
numpy = "^1.15"
|
|
|
|
click = "^7.0"
|
|
|
|
matplotlib = "^3.0"
|
2019-08-11 05:40:34 +00:00
|
|
|
attrs = "^18.2.0"
|
2018-12-20 22:38:30 +00:00
|
|
|
PyQt5 = "^5.11"
|
2019-01-16 09:16:39 +00:00
|
|
|
appdirs = "^1.4"
|
2018-12-20 22:38:30 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2019-08-11 05:40:34 +00:00
|
|
|
pytest = "^4.0"
|
2018-12-20 22:38:30 +00:00
|
|
|
pytest_mock = "^1.10"
|
2019-08-11 05:40:34 +00:00
|
|
|
hypothesis = "^3.84"
|
|
|
|
delayed-assert = "^0.2.3"
|
|
|
|
|
|
|
|
# I forked https://github.com/Loran425/pyinstaller,
|
|
|
|
# since Loran425 tends to force-push and delete the commit Poetry uses.
|
|
|
|
pyinstaller = {git = "https://github.com/nyanpasu64/pyinstaller.git", branch = "develop"}
|
2018-12-21 07:54:03 +00:00
|
|
|
pywin32-ctypes = {version = "^0.2.0",platform = "win32"}
|
2019-01-11 00:52:09 +00:00
|
|
|
coverage = "^4.5"
|
|
|
|
pytest-cov = "^2.6"
|
|
|
|
codecov = "^2.0"
|
2019-02-26 05:48:55 +00:00
|
|
|
pytest_cases = "^1.2"
|
2019-08-11 05:40:34 +00:00
|
|
|
|
2020-01-27 00:16:12 +00:00
|
|
|
black = {version = "^18.3-alpha.0", allow-prereleases = true}
|
2018-12-20 22:38:30 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
corr = 'corrscope.cli:main'
|
2019-01-12 08:41:46 +00:00
|
|
|
|
2019-01-07 01:06:38 +00:00
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
py36 = true
|
2019-01-26 03:27:46 +00:00
|
|
|
exclude = 'utils/scipy/'
|