-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 1.15 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
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "etptool"
authors = [
{ name = "Jabez Winston", email = "[email protected]" },
{ name = "Stephen Kingston", email = "[email protected]" },
]
description = "Embedded Tester Protocol (ETP) Tool"
readme = "README.md"
requires-python = ">=3.6"
dependencies = ["pyserial", "etplib==0.2.1"]
dynamic = ["version"]
keywords = ["embedded", "firmware", "test", "protocol", "gpio", "i2c", "adc", "pwm"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
[tool.setuptools]
packages = ["etptool"]
[project.urls]
"Homepage" = "https://www.embeddedtester.com/"
"Source code" = "https://github.com/jabezwinston/etptool"
[project.scripts]
etptool = "etptool.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "etptool.version.VERSION"}
[tool.setuptools.data-files]
"share/bash-completion/completions" = ["share/bash-completions/etptool"]