-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Packaging: Add missing pyproject.toml file
- Loading branch information
1 parent
bf8cbb1
commit b291891
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[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 = {file = "LICENSE"} | ||
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" | ||
|
||
[project.scripts] | ||
tmclfwupload = "pytrinamic.cli.tmclfwupload:main" | ||
|
||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "pytrinamic.version.__version__" } |