-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "etplib"
authors = [
{ name = "Jabez Winston", email = "jabezwinston@gmail.com" },
{ name = "Stephen Kingston", email = "stephen.psk@gmail.com" },
]
description = "Embedded Tester Protocol (ETP) Library"
readme = "README.md"
requires-python = ">=3.6"
dependencies = ["pyserial"]
dynamic = ["version"]
keywords = ["embedded", "firmware", "test", "protocol", "gpio", "i2c", "adc", "pwm", "spi"]
license = {text = "MIT"}
classifiers = [
"Topic :: Software Development :: Embedded Systems",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
[project.urls]
"Homepage" = "https://www.embeddedtester.com/"
"Source code" = "https://github.com/jabezwinston/etplib-python"
[tool.setuptools.dynamic]
version = {attr = "etplib.version.VERSION"}