-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (61 loc) · 1.82 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
[build-system]
# building cmake from pypi releases requires openssl-dev installed, so
# just require users install cmake from apt when getting python-dev (CPython headers)
requires = [
"setuptools>=61",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyrf24"
description = "A python package wrapping the nRF24 C++ libraries."
readme = "README.rst"
keywords = [
"nrf24l01",
"nRF24L01+",
"raspberry",
"pi",
"driver",
"radio",
"transceiver",
"RF24",
"RF24Network",
"RF24Mesh",
]
license = {text = "GPLv2"}
authors = [
{ name = "Brendan Doherty", email = "[email protected]" },
]
classifiers = [
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: System :: Networking",
"Typing :: Typed",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.urls]
Documentation = "http://nRF24.github.io/pyRF24"
Source = "https://github.com/nRF24/pyRF24"
Tracker = "https://github.com/nRF24/pyRF24/issues"
[tool.setuptools_scm]
# pypi does not accept version strings with commit SHA in it. See PEP440
local_scheme = "no-local-version"
fallback_version = "0.0.0"
version_scheme = "no-guess-dev"
[tool.mypy]
show_error_codes = true
pretty = true