-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
42 lines (35 loc) · 965 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
# SPDX-FileCopyrightText: Copyright (c) 2024 Scott Shawcroft for Adafruit Industries
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "circuitmatter"
version = "0.0.0+auto.0"
authors = [{name = "Scott Shawcroft", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.11"
readme = "README.md"
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
Home = "https://github.com/adafruit/circuitmatter"
"Bug Tracker" = "https://github.com/adafruit/circuitmatter/issues"
[tool.coverage.run]
branch = true
source = [
"circuitmatter",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.setuptools]
packages = ["circuitmatter"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}