40 lines
797 B
TOML
40 lines
797 B
TOML
[build-system]
|
|
requires = ["flit_core >=3.2,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "circuitmatter"
|
|
authors = [{name = "Scott Shawcroft", email = "scott@adafruit.com"}]
|
|
license = {file = "LICENSE"}
|
|
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
dynamic = ["version", "description"]
|
|
requires-python = ">=3.11"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"cryptography",
|
|
"ecdsa",
|
|
"qrcode"
|
|
]
|
|
|
|
[project.urls]
|
|
Home = "https://github.com/adafruit/circuitmatter"
|
|
"Bug Tracker" = "https://github.com/adafruit/circuitmatter/issues"
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"hypothesis",
|
|
"pytest",
|
|
"pytest-cov",
|
|
"typing_extensions",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
source = [
|
|
"circuitmatter",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = [
|
|
"."
|
|
]
|