-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.39 KB
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
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "bit-pirate"
version = "0.1.1"
description = "Python clients for ESP32 Bit Pirate over USB serial, Wi-Fi, and BPIO2"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Geo Frey" }
]
keywords = [
"esp32",
"hardware-hacking",
"serial",
"i2c",
"spi",
"uart",
"bpio2",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pyserial>=3.5",
"websocket-client>=1.8",
"cobs>=1.2",
"flatbuffers>=24.3",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"twine>=6",
"pytest>=8",
]
[project.urls]
Homepage = "https://github.com/geo-tp/ESP32-Bit-Pirate"
Repository = "https://github.com/geo-tp/Bit-Pirate-Python"
Issues = "https://github.com/geo-tp/Bit-Pirate-Python/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["bitpirate*"]
namespaces = false
[tool.pytest.ini_options]
testpaths = ["tests"]