kopia lustrzana https://github.com/corrscope/corrscope
32 wiersze
603 B
TOML
32 wiersze
603 B
TOML
|
[tool.poetry]
|
||
|
name = "corrscope"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["nyanpasu64 <nyanpasu64@tuta.io>"]
|
||
|
license = "BSD-2-Clause"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.6"
|
||
|
"ruamel.yaml" = "^0.15.70"
|
||
|
numpy = "^1.15"
|
||
|
scipy = "^1.2"
|
||
|
click = "^7.0"
|
||
|
more_itertools = "^4.3"
|
||
|
matplotlib = "^3.0"
|
||
|
attrs = "^18.2.0"
|
||
|
PyQt5 = "^5.11"
|
||
|
PyQt5-sip = "^4.19"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
pytest = "^4.0"
|
||
|
pytest_mock = "^1.10"
|
||
|
hypothesis = "^3.84"
|
||
|
delayed-assert = "^0.2.3"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
corr = 'corrscope.cli:main'
|
||
|
[build-system]
|
||
|
requires = ["poetry>=0.12"]
|
||
|
build-backend = "poetry.masonry.api"
|
||
|
|