-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
65 lines (59 loc) · 1.84 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
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
[build-system]
requires = [
"maturin>=1,<2",
"cffi",
]
build-backend = "maturin"
[project]
name = "cmsis-pack-manager"
requires-python = ">=3.6"
dependencies = [
"appdirs>=1.4,<2.0",
"cffi",
"pyyaml>=6.0,<7.0",
]
description = "Python manager for CMSIS-Pack index and cache with fast Rust backend"
readme = "README.md"
url = "https://github.com/pyocd/cmsis-pack-manager"
maintainers = [
{ name = "Mathias Brossard", email = "[email protected]" },
{ name = "Chris Reed", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Utilities",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"hypothesis",
"jinja2",
]
[project.scripts]
pack-manager = "cmsis_pack_manager.pack_manager:main"
[project.urls]
Documentation = "https://github.com/pyocd/cmsis-pack-manager/"
"Bug Tracker" = "https://github.com/pyocd/cmsis-pack-manager/issues"
Discussions = "https://github.com/pyocd/cmsis-pack-manager/discussions"
Changelog = "https://github.com/pyocd/cmsis-pack-manager/releases"
[tool.maturin]
bindings = "cffi"
[tool.pytest.ini_options]
python_files = "tests/*.py"