forked from pyserial/pyserial
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (35 loc) · 1006 Bytes
/
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
[build-system]
# Minimum requirements for the build system to execute.
requires = [
"setuptools>=47.2.0",
"wheel",
"setuptools_scm[toml]",
]
build-backend = "setuptools.build_meta"
[project]
name="pyserial-labgrid"
description="Python Serial Port Extension (with labgrid RFC2217 fixes)"
authors = [
{ name="Chris Liechti", email="[email protected]" },
{ name="Rouven Czerwinski", email="[email protected]" },
]
license = { text = "BSD" }
readme = "README.rst"
dynamic = ["version"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[project.urls]
"Homepage" = "https://github.com/labgrid-project/pyserial-labgrid"
"Bug Tracker" = "https://github.com/labgrid-project/labgrid/issues"
[project.scripts]
pyserial-miniterm = "serial.tools.miniterm:main"
pyserial-ports = "serial.tools.list_ports:main"
[project.optional-dependencies]
cp2110 = ['hidapi']
[tool.setuptools]
packages = [
"serial",
"serial.threaded",
"serial.tools",
"serial.urlhandler",
]