-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 864 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "easysense"
version = "1.0.11"
authors = [
{ name="Saladrian" }
]
description = "A CLI tool providing pre-written sensor implementations for Wiresense, designed to simplify sensor integration and data collection."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml>=6.0.1",
"wiresense>=1.0.2",
"adafruit-blinka>=8.41.2"
]
[project.scripts]
easysense = "easysense.main:main"
[project.urls]
Homepage = "https://github.com/Saladrian/easysense.py#readme"
Issues = "https://github.com/Saladrian/easysense.py/issues"
"Available Sensors" = "https://github.com/Saladrian/easysense.py-sensors"