-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml.bk
50 lines (41 loc) · 1.35 KB
/
pyproject.toml.bk
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
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "robot_hat"
authors = [
{ name="Lovmong", email="[email protected]" },
]
description = "Robot Hat Python library for Raspberry Pi"
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 = ["robot_hat", "sunfounder"]
dynamic = ["version"]
dependencies = [
'smbus2',
'gpiozero',
'pyaudio',
'spidev',
'pyserial',
'pillow',
'pygame>=2.1.2',
]
[project.scripts]
robot_hat = "robot_hat:__main__"
[project.urls]
Homepage = "https://www.sunfounder.com/products/sunfounder-robot-hat-expansion-board-designed-for-raspberry-pi"
Documentation = "https://docs.sunfounder.com/projects/robot-hat-v4/en/latest/"
Repository = "https://github.com/sunfounder/robot-hat/tree/dev"
Issues = "https://github.com/sunfounder/robot-hat/issues"
Changelog = "https://github.com/sunfounder/robot-hat/commits/dev/"
[tool.setuptools.packages.find]
include = ["robot_hat"]
exclude = ["setup.py", "docs", 'tests*', 'examples', 'workspace']
[tool.setuptools.dynamic]
version = {attr = "robot_hat.__version__"}