-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (54 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-msp430-tools"
description = "Python MSP430 Tools"
version = "0.10.0"
authors = [
{ name = "Chris Liechti", email = "cliechti@gmx.net" },
]
readme = "README.rst"
license = { text = "BSD-3-Clause" }
urls = { Homepage = "https://github.com/zsquareplusc/python-msp430-tools" }
requires-python = ">=3.6"
dependencies = [
"pyserial",
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Assemblers',
'Topic :: Software Development :: Libraries',
]
[project.scripts]
msp430-bsl = "msp430.bsl.target:main"
msp430-bsl-fcdprog = "msp430.bsl.target.fcdprog:main"
msp430-bsl-legacy = "msp430.legacy.bsl_main:main"
msp430-bsl-telosb = "msp430.bsl.target.telosb:main"
msp430-compare = "msp430.memory.compare:main"
msp430-convert = "msp430.memory.convert:main"
msp430-downloader = "msp430.downloader:main"
msp430-generate = "msp430.memory.generate:main"
msp430-hexdump = "msp430.memory.hexdump:main"
msp430-jtag = "msp430.jtag.target:main"
msp430-jtag-legacy = "msp430.legacy.jtag:main"
msp430-ram-usage = "msp430.ram_usage:main"
msp430-tool = "msp430.tool:main"
[tool.setuptools.packages.find]
include = ["msp430*"]
[tool.setuptools.package-data]
msp430 = [
"asm/definitions/msp430-mcu-list.txt",
"bsl/BL_150S_14x.txt",
"bsl/BL_150S_44x.txt",
"bsl/BS_150S_14x.txt",
"bsl/patch.txt",
"bsl5/RAM_BSL.00.06.05.34.txt",
]