-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.15 KB
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
[project]
name = "spidev"
description = "Python bindings for Linux SPI access through spidev"
dynamic = ["version", "readme"]
authors = [
{ name = "Volker Thoms", email = "unconnected@gmx.de" },
]
maintainers = [
{ name = "Stephen Caudle", email = "scaudle@doceme.com" },
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
]
keywords = ["SPI", "Linux", "SPI device"]
requires-python = ">=3.8"
[build-system]
requires = ["setuptools>=80.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Repository = "http://github.com/doceme/py-spidev"
Issues = "https://github.com/doceme/py-spidev/issues"
Changelog = "https://github.com/doceme/py-spidev/blob/master/CHANGELOG.md"
[tool.setuptools]
ext-modules = [
{name = "spidev", sources = ["spidev_module.c"]}
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown" }