acrn-hypervisor/misc/config_tools/setup.cfg
Junjie Mao d776e4ad47 config_tools: packaging config tool scripts for easier import
The next-generation ACRN configurator will embed a Python interpreter built
in WebAssembly (WASM) for executing Python scripts for manipulating
scenario schemas and validating user data. It is quite tedious to
separately import multiple modules there due to the restriction of that
Python environment. The recommended approach is to package those
modules (e.g. as a *.wic file) so that all modules can be imported in one
shot.

This patch adds the files needed to package the scripts. The package is
solely used for the configurator to import and not intended to be used by
end users for any purpose.

v1 -> v2:

  * Fix the license header of __init__.py
  * Move patterns of ignored files to the top-level .gitignore

Tracked-On: #6691
Signed-off-by: Junjie Mao <junjie.mao@intel.com>
Reviewed-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
2022-03-18 08:49:06 +08:00

26 lines
680 B
INI

[metadata]
name = acrn-config-tools
version = 3.0
author = Intel
author_email = acrn-dev@lists.projectacrn.org
description = Supporting libraries of ACRN configuration toolset
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/projectacrn/acrn-hypervisor
project_urls =
Bug Tracker = https://github.com/projectacrn/acrn-hypervisor/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD-3-Clause License
Operating System :: OS Independent
Private :: Do Not Upload
[options]
package_dir =
= .
packages = find:
python_requires = >=3.6
[options.packages.find]
where = .