-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
33 lines (31 loc) · 947 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='cmdebug',
version='0.1',
packages = ['cmdebug'],
description='Debug utilities for ARM Cortex-M microprocessors',
author='Ben Nahill',
author_email='[email protected]',
url='https://github.com/bnahill/PyCortexMDebug',
long_description="""\
PyCortexMDebug provides basic facilities for interacting with
Cortex-M microprocessors, primarily using GDB. This project aims
to offer small-project developers the powerful capabilities
generally reserved for costly commercial tools.
""",
classifiers=[
"License :: OSI Approved :: " \
"GNU General Public License v3 (GPLv3) ",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
],
keywords='arm gdb cortex cortex-m svd trace microcontroller',
license='GPL',
install_requires=[
'setuptools',
'lxml',
],
)