-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (41 loc) · 1015 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
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "ham_tools"
version = "0.1.0"
description = "Various amateur radio tools"
authors = ["Nick Pegg <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
ft991a = 'ham_tools.cli.ft991a:main'
cat_shell = 'ham_tools.cli.cat_shell:main'
ft991a_noise_watch = 'ham_tools.cli.noise_watch:main'
rig_meters = 'ham_tools.cli.rig_meters:main'
[tool.poetry.dependencies]
python = ">=3.9.0,<4"
pyserial = "^3.5"
tqdm = "^4.66.3"
colorama = "^0.4.4"
[tool.poetry.dev-dependencies]
black = "*"
mypy = "*"
pytest = "*"
isort = "*"
ipython = "*"
types-colorama = "^0.4.10"
types-setuptools = "^57.4.11"
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "serial.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tqdm.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"integration: Integration tests which require a real radio"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"