-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (36 loc) · 945 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "pyes"
version = "1.1.2"
description = ""
authors = ["Lorenzo Castellino <[email protected]>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
ppg = {git = "ssh://[email protected]/Kastakin/ppg.git", rev = "main"}
pandas = "^1.5.0"
openpyxl = "^3.0.9"
PySide6-Essentials = "~6.4.0"
pyqtgraph = "^0.13.0"
[tool.poetry.group.dev.dependencies]
tbump = "^6.7.0"
isort = "^5.10.1"
black = "^22.3.0"
pre-commit = "^2.18.1"
matplotlib = "^3.6.0"
scipy = "^1.9.1"
pyinstrument = "^4.3.0"
Pillow = "^9.2.0"
ruff = "^0.0.124"
pytest = "^7.2.0"
pytest-sugar = "^0.9.6"
pytest-cov = "^4.0.0"
pytest-qt = "^4.2.0"
pytest-xvfb = "^2.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
pythonpath = "src/main/python/pyes"
addopts = "--cov=src/main/python/pyes --cov-report=html --cov-config=.coveragerc"
qt_api = "pyside6"