forked from pyocd/pyOCD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (84 loc) · 2.67 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = pyocd
description = Cortex-M debugger for Python
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Chris Reed
maintainer_email = [email protected]
url = https://github.com/pyocd/pyOCD
keywords = embedded debugger arm gdbserver
license = Apache 2.0
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
Topic :: Software Development :: Debuggers
Topic :: Software Development :: Embedded Systems
Topic :: Utilities
project_urls =
Documentation = https://github.com/pyocd/pyOCD/docs
Issues = https://github.com/pyocd/pyOCD/issues
Discussions = https://github.com/pyocd/pyOCD/discussions
Releases = https://github.com/pyocd/pyOCD/releases
[options]
zip_safe = True
include_package_data = True
packages = find:
python_requires = >=3.6.0
# Use hidapi on macOS and Windows, not needed on Linux.
install_requires =
capstone>=4.0,<5.0
cmsis-pack-manager>=0.4.0,<1.0
colorama<1.0
dataclasses; python_version < "3.7"
hidapi>=0.10.1,<1.0; platform_system != "Linux"
intelhex>=2.0,<3.0
intervaltree>=3.0.2,<4.0
naturalsort>=1.5,<2.0
prettytable>=2.0,<3.0
pyelftools<1.0
pylink-square>=0.11.1,<1.0
pyocd_pemicro>=1.0.6
pyusb>=1.2.1,<2.0
pyyaml>=6.0,<7.0
six>=1.15.0,<2.0
[options.extras_require]
test =
pytest>=6.2
pytest-cov
coverage
elapsedtimer
flake8
pylint
tox
[options.package_data]
pyocd = debug/svd/svd_data.zip
[options.entry_points]
console_scripts =
pyocd = pyocd.__main__:main
# Keep deprecated tools for compatibility.
pyocd-gdbserver = pyocd.tools.gdb_server:main
pyocd.probe =
cmsisdap = pyocd.probe.cmsis_dap_probe:CMSISDAPProbePlugin
jlink = pyocd.probe.jlink_probe:JLinkProbePlugin
picoprobe = pyocd.probe.picoprobe:PicoprobePlugin
remote = pyocd.probe.tcp_client_probe:TCPClientProbePlugin
stlink = pyocd.probe.stlink_probe:StlinkProbePlugin
pyocd.rtos =
argon = pyocd.rtos.argon:ArgonPlugin
freertos = pyocd.rtos.freertos:FreeRTOSPlugin
rtx5 = pyocd.rtos.rtx5:RTX5Plugin
threadx = pyocd.rtos.threadx:ThreadXPlugin
zephyr = pyocd.rtos.zephyr:ZephyrPlugin