-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zeus_pi"
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 = ["zeus_pi", "Zeus", "sunfounder"]
dynamic = ["version"]
dependencies = [
'blessed',
'adafruit-circuitpython-dht',
'Adafruit-Blinka',
'adafruit-circuitpython-neopixel-spi',
'imufusion',
]
[tool.setuptools]
packages = ["zeus_pi"]
[project.scripts]
[project.urls]
"Homepage" = "https://github.com/sunfounder/zeus_pi"
"Bug Tracker" = "https://github.com/sunfounder/zeus_pi/issues"
#[tool.setuptools.packages.find]
#include = ["zeus_pi"]
#exclude = ["setup.py", "docs", 'tests*', 'examples', 'workspace']
[tool.setuptools.dynamic]
version = {attr = "zeus_pi.version.__version__"}