mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 18:10:00 +00:00
* Support for baremtal node scenarious * Finished baremetal support * Added documentation for baremetal * Clarify limitations of implementation in documentation * Add baremetal support to new run.py file * Allow use on newer machines Some older machines require lanplus instead of lan * Setup to allow per-device user, pass, and bmc address Also set min version for a dependency * Fix linting issues * More linting issue fixes * More linter issues * Account for linter standard non-conformity * Added baremetal warning Co-authored-by: jaredoconnell <jocnnel@redhat.com>
43 lines
1.0 KiB
INI
43 lines
1.0 KiB
INI
[metadata]
|
|
name = kraken
|
|
description = Chaos and resiliency testing tool
|
|
author = chaitanyaenr
|
|
author-email = nelluri@redhat.com
|
|
license = Apache License 2.0
|
|
long-description = file: README.md
|
|
long-description-content-type = text/markdown; charset=UTF-8
|
|
classifiers =
|
|
Development Status :: 4 - Beta
|
|
Programming Language :: Python
|
|
|
|
[options]
|
|
zip_safe = False
|
|
packages = find:
|
|
include_package_data = True
|
|
package_dir =
|
|
=kraken
|
|
# Add here dependencies of your project (semicolon/line-separated), e.g.
|
|
install_requires = PyYAML
|
|
# tests_require = pytest; pytest-cov
|
|
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
|
|
# python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
|
|
|
|
[options.packages.find]
|
|
where = src
|
|
|
|
[options.extras_require]
|
|
# Add here additional requirements for extra features, to install with:
|
|
# `pip install touchstone[PDF]` like:
|
|
# PDF = ReportLab; RXP
|
|
|
|
[aliases]
|
|
dists = bdist_wheel
|
|
|
|
[bdist_wheel]
|
|
# Use this option if your package is pure-python
|
|
universal = 1
|
|
|
|
[flake8]
|
|
# Ignore specified error codes
|
|
extend-ignore = W503, E203
|