-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 863 Bytes
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
[build-system]
# Copyright (c) 2025 codenio ( Aananth K )
# SPDX-License-Identifier: GPL-3.0-only
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Mock.GPIO"
description = "Mock Library for RPi.GPIO"
readme = "README.md"
license = "GPL-3.0-only"
authors = [{ name = "Aananth K", email = "aananthraj1995@gmail.com" }]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = []
[project.urls]
Homepage = "https://github.com/codenio/Mock.GPIO"
Repository = "https://github.com/codenio/Mock.GPIO"
Issues = "https://github.com/codenio/Mock.GPIO/issues"
[tool.setuptools]
packages = { find = { where = ["."], include = ["Mock*"], exclude = ["tests*"] } }
[tool.setuptools.dynamic]
version = { attr = "Mock.__version__" }
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = ["tests"]