-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (80 loc) · 2.21 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
# SPDX-FileCopyrightText: 2022 Alec Delaney, for Adafruit Industries
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "circfirm"
description = "CLI tool for install firmware for CircuitPython boards"
requires-python = ">=3.8.0"
readme = "README.rst"
authors = [
{name = "Alec Delaney", email = "[email protected]"}
]
keywords = [
"adafruit",
"circuitpython",
"tool",
"cli",
"firmware",
"install",
"upload",
]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Typing :: Typed",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/tekktrik/circfirm"
Repository = "https://github.com/tekktrik/circfirm.git"
Issues = "https://github.com/tekktrik/circfirm/issues"
[project.scripts]
circfirm = "circfirm.cli:cli"
[tool.setuptools]
packages = [
"circfirm",
"circfirm.cli",
"circfirm.backend",
]
include-package-data = true
[tool.setuptools.dynamic.version]
file = "VERSION"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"]}}
[tool.setuptools_scm]
[tool.coverage.run]
source = [
"circfirm/",
"tests/",
]
[tool.ruff.lint]
select = ["D", "PL", "UP", "I"]
ignore = ["D213", "D203"]
[tool.pytest.ini_options]
filterwarnings = ["ignore:datetime.datetime.utcfromtimestamp():DeprecationWarning"]
addopts = [
"--ignore=tests/sandbox/circuitpython",
"--ignore=tests/backup",
]