-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.28 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
[build-system]
requires = ["hatchling >= 1.27"]
build-backend = "hatchling.build"
[project]
name = "avr-absurd"
version = "1.0.1"
authors = [
{ name="feline-felicity" },
]
description = "SerialUPDI-based GDB RSP server for AVR8X microcontrollers"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Debuggers",
]
dependencies = [
"pyserial",
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["avr", "debugger", "ocd", "serialupdi"]
[project.scripts]
avr-absurd = "absurd.__main__:main"
[project.urls]
Homepage = "https://github.com/feline-felicity/avr-absurd"
Issues = "https://github.com/feline-felicity/avr-absurd/issues"
[tool.hatch.build]
exclude = [
".vscode",
]
[tool.hatch.build.targets.wheel]
packages = ["src/absurd"]