-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.14 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
[tool.poetry]
name = "evora-wheel"
version = "0.1.0"
description = "Controller and server for the Evora filter wheel"
authors = ["José Sánchez-Gallego <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{include = "evora_wheel", from = "src"}]
[tool.poetry.dependencies]
python = "^3.9,<4"
daemonocle = "^1.0.2"
click = "^8.1.3"
click-default-group = "^1.2.2"
phidget22 = "^1.14.20230331"
pyserial = "^3.5"
[tool.poetry.dev-dependencies]
ipython = ">=8.0.0"
ipdb = ">=0.13.3"
ruff = ">=0.4.0"
[tool.poetry.scripts]
evora-wheel = "evora_wheel.__main__:evora_wheel"
[tool.ruff]
line-length = 88
target-version = 'py312'
exclude = ["typings/"]
[ruff.lint]
select = ["E", "F", "I"]
unfixable = ["F841"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403", "E402"]
[tool.ruff.lint.isort]
known-first-party = ["evora_wheel"]
lines-after-imports = 2
section-order = ["future", "standard-library", "typing", "third-party", "sdss", "first-party", "local-folder"]
[tool.ruff.lint.isort.sections]
typing = ["typing"]
sdss = ["sdsstools"]
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"