-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (79 loc) · 1.79 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
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "mikro-manager"
version = "0.1.0"
description = "a simple wrapper to enable basic functionaliy of MikroManager on Arkitekt"
authors = ["jhnnsrs <jhnnsrs@gmail.com>"]
license = "CC BY-NC 3.0"
packages = [{ include = "mikro_manager" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
arkitekt = {version = "0.7.8", extras = [
"reaktion",
"rekuest",
"mikro",
"fluss",
"unlok"
]}
pycromanager = "0.27.5"
[tool.mypy]
exclude = ["venv/"]
ignore_missing_imports = true
[tool.poetry.scripts]
mikro-manager = "mikro_manager.main:main"
[tool.ruff]
extend-select = ["ANN", "D1"]
ignore = ["ANN101", "D107", "D106", "ANN002", "ANN003"]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"tests",
]
# Same as Black.
line-length = 100
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.2"
turms = { version = ">=0.3.1", python = "^3.9" }
aiohttp = "^3.8.3"
websockets = "^10.4"
black = "^23.1.0"
pytest-cov = "^4.0.0"
pytest-aiohttp = "^1.0.4"
ruff = "^0.0.254"
mypy = "^1.0.1"
pytest-qt = "^4.2.0"
pyinstaller = "5.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = ["gucker"]
[tool.pydoc-markdown.renderer]
type = "docusaurus"
docs_base_path = "website/docs"
[tool.pytest.ini_options]
qt_api = "pyqt5"
markers = [
"integration: marks tests that require a running arkitekt server",
"qt: marks tests that require a running qt application",
]