-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (43 loc) · 1.25 KB
/
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
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bella_hat"
authors = [
{name="SunFounder", email="[email protected]" },
]
description = "Python library for Bella Hat on Rasb"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
keywords = ["bella", "bella_hat", "sunfounder"]
dynamic = ["version"]
dependencies = [
'smbus2',
'RPi.GPIO',
'spidev',
'pyserial',
'pillow',
'pygame>=2.1.2',
'adafruit-circuitpython-dht',
'Adafruit-Blinka',
'adafruit-circuitpython-lsm6ds',
'adafruit-circuitpython-neopixel-spi',
]
#'pyaudio',
[tool.setuptools]
packages = ["bella_hat"]
[project.scripts]
bella_hat = "bella_hat.utils:__main__"
[project.urls]
"Homepage" = "https://github.com/sunfounder/bella_hat"
"Bug Tracker" = "https://github.com/sunfounder/bella_hat/issues"
#[tool.setuptools.packages.find]
#include = ["bella_hat"]
#exclude = ["setup.py", "docs", 'tests*', 'examples', 'workspace']
[tool.setuptools.dynamic]
version = {attr = "bella_hat.__version__"}