forked from pyocd/cmsis-pack-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (53 loc) · 1.73 KB
/
setup.cfg
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
[metadata]
name = cmsis-pack-manager
description = Python manager for CMSIS-Pack index and cache with fast Rust backend
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pyocd/cmsis-pack-manager
maintainer = Mathias Brossard, Chris Reed
maintainer_email = [email protected], [email protected]
license = Apache 2.0
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
Topic :: Software Development
Topic :: Software Development :: Debuggers
Topic :: Software Development :: Embedded Systems
Topic :: Utilities
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
[options]
packages = find:
install_requires =
appdirs>=1.4,<2.0
milksnake>=0.1.5,<1.0
pyyaml>=6.0,<7.0
python_requires = >=3.6
include_package_data = True
zip_safe = False
[options.extras_require]
test =
pytest>=6.0
hypothesis
jinja2
mock
[options.entry_points]
console_scripts =
pack-manager = cmsis_pack_manager.pack_manager:main
[tool:pytest]
python_files = tests/*.py