-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pynrfjprog"
authors = [
{ name="Nordic Semiconductor ASA", email = "[email protected]" }
]
description = "A simple Python interface for the nrfjprog functionality"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: Other/Proprietary License"
]
keywords = [
"nrfjprog",
"pynrfjprog"
]
dependencies = [
"future",
"tomli-w"
]
requires-python = ">=3.7"
dynamic = ["version"]
readme = "README.md"
[project.license]
file = "LICENSE"
[project.urls]
"Homepage" = "https://www.nordicsemi.com/Products/Development-tools/nrf-pynrfjprog/"
"Bug Tracker" = "https://github.com/NordicSemiconductor/pynrfjprog/issues"
[tool.setuptools]
packages = {find = {}}
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pynrfjprog.__version__"}