-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
73 lines (71 loc) · 1.95 KB
/
setup.cfg
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
63
64
65
66
67
68
69
70
71
72
73
[metadata]
name = psdb
version = 1.1.5
author = Terry Greeniaus
author_email = [email protected]
description = Package for interfacing with ARM-compatible debug probes
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = stlink xds110 arm swd fus stm32 msp432
url = https://github.com/tgree/psdb
license = LGPLv2
license_file = LICENSE
classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
[options]
python_requires = >=3.0
packages =
psdb
psdb.block
psdb.component
psdb.cpus
psdb.devices
psdb.devices.core
psdb.devices.msp432
psdb.devices.stm32
psdb.devices.stm32c0
psdb.devices.stm32g0
psdb.devices.stm32g4
psdb.devices.stm32h7
psdb.devices.stm32l4
psdb.devices.stm32u5
psdb.devices.stm32wb55
psdb.devices.stm32wb55.ipc
psdb.elf
psdb.hexfile
psdb.inspect_tool
psdb.probes
psdb.probes.stlink
psdb.probes.xds110
psdb.probes.xtswd
psdb.targets
psdb.targets.msp432
psdb.targets.stm32c0
psdb.targets.stm32g0
psdb.targets.stm32g4
psdb.targets.stm32h7
psdb.targets.stm32l4
psdb.targets.stm32u5
psdb.targets.stm32wb55
psdb.util
install_requires =
btype>=0.1.4
libusb_package>=1.0.26.2
pyelftools
pyusb
tgcurses>=0.9.5
[options.entry_points]
console_scripts =
psdb_core_tool = psdb.core_tool:_main
psdb_dump_stats = psdb.dump_stats:_main
psdb_flash_tool = psdb.flash_tool:_main
psdb_fus_tool = psdb.fus_tool:_main
psdb_gdb_tool = psdb.gdb_tool:_main
psdb_inspect_tool = psdb.inspect_tool.inspect_tool:_main
psdb_reg_dump_tool = psdb.reg_dump_tool:_main
psdb_scan_tool = psdb.scan_tool:_main
psdb_srst_tool = psdb.srst_tool:_main
psdb_xtswd_imon_tool = psdb.probes.xtswd.imon:_main
psdb_xtswd_plot_imon_tool = psdb.probes.xtswd.plot_imon:_main