-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (27 loc) · 888 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[project]
name = "telemetrix-rpi-pico-w"
version = "1.20"
authors = [
{ name="Alan Yorinks", email="MisterYsLab@gmail.com" },
]
description = "Telemetrix Client For the Raspberry Pi Pico-W"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "AGPL-3.0-or-later"}
keywords=['telemetrix', 'Raspberry Pi', 'Pico', 'Pico-w66', 'Python']
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
"pyserial"
]