-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.31 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
[tool.poetry]
name = "gdbundle-pycortexmdebug"
version = "0.0.7"
description = "gdbundle wrapper for PyCortexMDebug"
readme = "README.md"
authors = ["Tyler Hoffman <tyler@memfault.com>"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"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",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=2.7,<2.8 || >=3.5.0"
# TODO if PyCortexMDebug is deployed to PyPi, update to include this dependency,
# and remove lxml transitive dep
# cmdebug = "*"
lxml = "^4.5.2"
gdbundle = "~0.0.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"