-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
33 lines (31 loc) · 1.1 KB
/
pyproject.toml
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
[tool.poetry]
name = "gdbundle"
version = "0.0.4"
description = "Plugin Manager for GDB and LLDB"
authors = ["Tyler Hoffman <tyler@memfault.com>"]
homepage = "https://github.com/memfault/gdbundle"
repository = "https://github.com/memfault/gdbundle"
license = "MIT"
readme = "README.md"
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"