-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
85 lines (77 loc) · 1.81 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.poetry]
name = "mad_gui"
version = "1.0.2"
description = "Python GUI for annotating and processing time series data."
authors = [
"Malte Ollenschlaeger <malte.ollenschlaeger@fau.de>",
"Arne Kuederle <arne.kuederle@fau.de>",
"Ann-Kristin Seifer <ann-kristin.seifer@fau.de>"
]
readme = "README_pypi.md"
homepage = "https://github.com/mad-lab-fau/mad-gui"
repository = "https://github.com/mad-lab-fau/mad-gui"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
pandas = ">=1.2"
pyqtgraph = "0.13.1"
PySide2 = "5.15.1"
typing-extensions = "^3.10.0"
sphinx-qt-documentation = "^0.3"
python-vlc = "^3.0.16120"
[tool.poetry.dev-dependencies]
openpyxl = "^3.0.6"
pytest = "^6.2.2"
numpy = "^1.19.2"
black = "^22.3.0"
doit = "^0.33.1"
isort = "4.2.5"
pytest-cov = "^2.11.1"
pytest-qt = "^3.3.0"
Sphinx = "^3.5.1"
recommonmark = "^0.7.1"
numpydoc = "^1.1.0"
pydata-sphinx-theme = "^0.6.2"
sphinx-markdown-tables = "^0.0.15"
prospector ="1.5.3" # older versions might work but also might crash: https://github.com/PyCQA/prospector/issues/438
sphinxemoji = "^0.1.9"
[tool.poetry.scripts]
mad-gui = "mad_gui:start_gui"
[tool.isort]
profile = "black"
skip_glob = ["tests/test_windows/", ".venv"]
multi_line_output = 3
line_length = 120
skip_gitignore = true
[tool.black]
line-length = 120
target-version = ['py37']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| docs
| build
| study
| dist
| \.virtual_documents
)/
)
'''
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"