-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
33 lines (26 loc) · 987 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "ka3005p"
requires-python = ">=3.8"
description = "Python interface to control Korad, Tenma, RS, Velleman, Stamos, and other compatible power supplies via their serial interface."
readme = "python/README.md"
maintainers = [
{ name = "Nicola Coretti", email ="nico.coretti@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Miscellaneous",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "maturin_import_hook"]
[tool.maturin]
pythonj-source = "python"
features = ["pyo3/extension-module", "python_module"]