Metadata-Version: 2.1
Name: kintyre-splunk-conf
Version: 0.13.8
Summary: KSCONF: Ksconf Splunk Configuration Tool
Home-page: https://github.com/Kintyre/ksconf
Author: Lowell Alleman
Author-email: lowell@kintyre.co
License: Apache Software License
Project-URL: Documentation, https://ksconf.readthedocs.io/
Project-URL: Splunk app, https://splunkbase.splunk.com/app/4383/
Keywords: ksconf splunk kinytre conf tool
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: splunk-sdk >=1.7.0
Requires-Dist: pluggy >=1.2.0
Requires-Dist: importlib-metadata >4.6 ; python_version < "3.10"
Provides-Extra: bash
Requires-Dist: argcomplete ; extra == 'bash'
Provides-Extra: fully-loaded
Requires-Dist: lxml ; extra == 'fully-loaded'
Requires-Dist: argcomplete ; extra == 'fully-loaded'
Requires-Dist: jinja2 ; extra == 'fully-loaded'
Requires-Dist: splunk-sdk ; extra == 'fully-loaded'
Requires-Dist: pyyaml ; extra == 'fully-loaded'
Provides-Extra: jinja
Requires-Dist: jinja2 ; extra == 'jinja'
Provides-Extra: thirdparty
Requires-Dist: splunk-sdk >=1.7.0 ; extra == 'thirdparty'
Requires-Dist: lxml ; extra == 'thirdparty'
Provides-Extra: xml
Requires-Dist: lxml ; extra == 'xml'

# Ksconf Splunk CONFiguration tool

This utility handles common Splunk app maintenance tasks in an installable python package.
Specifically, this tool deals with many of the nuances of storing Splunk apps in a
version control system like git and pointing live Splunk apps to a working tree. Merging changes
from the live system's (local) folder to the version controlled (default) folder and dealing with
more than one layer of "default" are all supported tasks which are not native to Splunk.
Tasks like creating new Splunk apps from your local system while merging the 'local' folder into
'default' is also supported.


## Package rename
This package has been renamed [ksconf](https://pypi.org/project/ksconf/) starting with v0.10.
Please switch to this new package using the upgrade steps listed below.

## Suggested upgrade steps:
```sh
pip uninstall kintyre-splunk-conf
pip install ksconf
```

## Who should keep using kintyre-splunk-conf?
For the time being, you can still install and upgrade the latest release of
ksconf using the `kintyre-splunk-conf` package.

Note that as of the v0.10 release, only Python 3.7 and higher are supported.
If you need a version of ksconf that works with Python 2.7 & Python 3.6,
then you should use kintyre-splunk-conf prior to v0.10.  We suggest that everyone
else should upgrade to the latest `ksconf` package.

Side note:  Attempts to make kintyre-splunk-conf simply install the new ksconf
package under the covers resulted in an unusable deployment.  So for now
we are building two identical packages under different names.  In the next
minor release you can expect additional onscreen warnings about the package
rename at every invocation.

## Moving on ...


Install with

    pip install kintyre-splunk-conf

Confirm installation with the following command:

    ksconf --version

To get an overview of all the CLI commands, run:

    ksconf --help

Help on specific command, such as 'unarchive', run:

    ksconf unarchive --help


Please see the [Official docs](https://ksconf.readthedocs.io/en/latest/) for more info.

