-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 950 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
43
44
45
# SPDX-FileCopyrightText: 2024 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: BSD-3-Clause
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arduino-pytwister"
version = "1.0.0"
requires-python = ">3.7"
dependencies = [
"packaging",
"pyserial",
]
authors = [
{name = "Michael Liebling", email = "michael.liebling@idiap.ch"},
{name = "François Marelli", email = "francois.marelli@idiap.ch"},
]
maintainers = [
{name = "Daniel Carron", email = "daniel.carron@idiap.ch"}
]
description = "A python driver for arduino-controlled stepper motor"
readme = "README.md"
keywords = ["arduino", "sparkfun"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
qa = [
"pre-commit",
"reuse",
]
[project.urls]
Repository = ""
[tool.hatch.build.targets.wheel]
packages = ["src/pytwister"]