-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (47 loc) · 1.09 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
[tool.black]
exclude = '''
(
\.git/
| \.vscode/
| env/
)
'''
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Bas Stottelaar <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
]
description = "Python script to calculate LPC firmware checksums"
homepage = "https://github.com/basilfx/lpc_checksum"
include = [
"LICENSE.md",
]
keywords = ["lpc", "mcu", "cortex", "nxp", "flashing"]
license = "MIT"
name = "lpc_checksum"
packages = [
{ include = "lpc_checksum" }
]
readme = "README.md"
repository = "https://github.com/basilfx/lpc_checksum"
version = "3.0.0"
[tool.poetry.dependencies]
python = "^3.9"
intelhex = "^2.3.0"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = ">=5.0.4,<7.0.0"
flake8-mypy = "^17.8.0"
pytest = "^7.2.0"
[tool.poetry.scripts]
lpc_checksum = 'lpc_checksum:run'
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]