forked from pyocd/pyOCD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
137 lines (130 loc) · 5.11 KB
/
setup.py
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# pyOCD debugger
# Copyright (c) 2012-2020 Arm Limited
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import os
from setuptools import setup, find_packages
import zipfile
# Get the directory containing this setup.py. Even though full paths are used below, we must
# chdir in order for setuptools-scm to successfully pick up the version.
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
os.chdir(SCRIPT_DIR)
# Read the readme file using UTF-8 encoding.
open_args = { 'mode': 'r' }
if sys.version_info[0] > 2:
# Python 3.x version requires explicitly setting the encoding.
# Python 2.x version of open() doesn't support the encoding parameter.
open_args['encoding'] = 'utf-8'
readme_path = os.path.join(SCRIPT_DIR, "README.md")
with open(readme_path, **open_args) as f:
readme = f.read()
# Build zip of SVD files.
#
# The SVD files are stored individually in the data/ directory only in the repo. For both sdist and
# wheel, the svd_data.zip file is used rather than including the data directory. Thus, this setup
# script needs to skip building svd_data.zip if the data/ directory is not present.
svd_dir_path = os.path.join(SCRIPT_DIR, "pyocd", "debug", "svd")
svd_data_dir_path = os.path.join(svd_dir_path, "data")
svd_zip_path = os.path.join(svd_dir_path, "svd_data.zip")
if os.path.exists(svd_data_dir_path):
with zipfile.ZipFile(svd_zip_path, 'w', zipfile.ZIP_DEFLATED) as svd_zip:
for name in sorted(os.listdir(svd_data_dir_path)):
svd_zip.write(os.path.join(svd_data_dir_path, name), name)
elif not os.path.exists(svd_zip_path):
raise RuntimeError("neither the source SVD data directory nor built svd_data.zip exist")
setup(
name="pyocd",
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'pyocd/_version.py'
},
setup_requires=[
'setuptools>=40.0',
'setuptools_scm!=1.5.3,!=1.5.4',
'setuptools_scm_git_archive',
],
description="Cortex-M debugger for Python",
long_description=readme,
long_description_content_type='text/markdown',
author="Chris Reed, Martin Kojtal, Russ Butler",
url='https://github.com/mbedmicro/pyOCD',
license="Apache 2.0",
# Allow installation on 2.7.9+, and 3.4+ even though we officially only support 3.6+.
python_requires=">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires = [
'cmsis-pack-manager>=0.2.7',
'colorama',
'enum34>=1.0,<2.0;python_version<"3.4"',
'hidapi;platform_system=="Darwin"',
'intelhex>=2.0,<3.0',
'intervaltree>=3.0.2,<4.0',
'naturalsort>=1.5,<2.0',
'prettytable',
'pyelftools',
'pylink-square',
'pyusb>=1.0.0b2,<2.0',
'pywinusb>=0.4.0;platform_system=="Windows"',
'pyyaml>=5.1,<6.0',
'six>=1.0,<2.0',
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
],
extras_require={
'dissassembler': ['capstone'],
},
entry_points={
'console_scripts': [
'pyocd = pyocd.__main__:main',
# Keep deprecated tools for compatibility.
'pyocd-gdbserver = pyocd.tools.gdb_server:main',
'pyocd-flashtool = pyocd.tools.flash_tool:main',
'pyocd-tool = pyocd.tools.pyocd:main',
],
'pyocd.probe': [
'cmsisdap = pyocd.probe.cmsis_dap_probe:CMSISDAPProbePlugin',
'jlink = pyocd.probe.jlink_probe:JLinkProbePlugin',
'stlink = pyocd.probe.stlink_probe:StlinkProbePlugin',
],
'pyocd.rtos': [
'argon = pyocd.rtos.argon:ArgonPlugin',
'freertos = pyocd.rtos.freertos:FreeRTOSPlugin',
'zephyr = pyocd.rtos.zephyr:ZephyrPlugin',
'rtx5 = pyocd.rtos.rtx5:RTX5Plugin',
],
},
packages=find_packages(),
include_package_data=True, # include files from MANIFEST.in
package_data={
'pyocd': ['debug/svd/svd_data.zip'],
},
zip_safe=True,
options={
'bdist_wheel': {
'universal': True,
},
},
)