forked from sunfounder/pironman5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 920 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pironman5"
authors = [
{ name="SunFounder", email="service@sunfounder.com" },
]
description = "Library for monitoring Raspberry Pi system status"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
'smbus2',
'psutil',
'adafruit-circuitpython-neopixel-spi',
'RPi.GPIO',
]
[project.scripts]
pironman5-service = "pironman5:main"
[tool.setuptools]
packages = ["pironman5", "pironman5.variants"]
[project.urls]
"Homepage" = "https://github.com/LeXwDeX/pironman5"
"Bug Tracker" = "https://github.com/LeXwDeX/pironman5/issues"
[tool.setuptools.dynamic]
version = {attr = "pironman5.version.__version__"}