-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
40 lines (35 loc) · 1019 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytrinamic"
authors = [
{ name = "ADI Trinamic Software Team", email = "[email protected]" },
]
description = "TRINAMIC's Python Technology Access Package."
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"python-can>=3",
"canopen",
"pyserial>=3",
"IntelHex>=2.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/analogdevicesinc/pytrinamic"
Issues = "https://github.com/analogdevicesinc/pytrinamic/issues"
[project.scripts]
tmclfwupload = "pytrinamic.cli.tmclfwupload:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = { attr = "pytrinamic.version.__version__" }