Metadata-Version: 2.1
Name: inmanta-core
Version: 14.0.0
Summary: Inmanta deployment tool
Home-page: https://github.com/inmanta/inmanta-core
Author: Inmanta
Author-email: code@inmanta.com
License: Apache Software License 2
Project-URL: Bug Tracker, https://github.com/inmanta/inmanta-core/issues
Project-URL: Documentation, https://docs.inmanta.com/community/latest/
Keywords: orchestrator orchestration configurationmanagement
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: asyncpg ~=0.25
Requires-Dist: build ~=1.0
Requires-Dist: click-plugins ~=1.0
Requires-Dist: click <8.2,>=8.0
Requires-Dist: colorlog ~=6.4
Requires-Dist: cookiecutter <3,>=1
Requires-Dist: crontab <2.0,>=0.23
Requires-Dist: cryptography <44,>=36
Requires-Dist: docstring-parser <0.17,>=0.10
Requires-Dist: email-validator <3,>=1
Requires-Dist: jinja2 ~=3.0
Requires-Dist: logfire <2.0,>=0.46
Requires-Dist: more-itertools <11,>=8
Requires-Dist: opentelemetry-instrumentation-asyncpg ~=0.46b0
Requires-Dist: packaging <24.2,>=21.3
Requires-Dist: pip >=21.3
Requires-Dist: ply ~=3.0
Requires-Dist: pydantic ~=2.5
Requires-Dist: pyformance ~=0.4
Requires-Dist: PyJWT ~=2.0
Requires-Dist: pynacl ~=1.5
Requires-Dist: python-dateutil ~=2.0
Requires-Dist: pyyaml ~=6.0
Requires-Dist: setuptools
Requires-Dist: texttable ~=1.0
Requires-Dist: tornado ~=6.0
Requires-Dist: typing-inspect ~=0.9
Requires-Dist: ruamel.yaml ~=0.17
Requires-Dist: toml ~=0.10
Requires-Dist: setproctitle ~=1.3
Provides-Extra: datatrace
Requires-Dist: graphviz ; extra == 'datatrace'
Provides-Extra: debug
Requires-Dist: rpdb ; extra == 'debug'
Provides-Extra: pytest-inmanta-extensions
Requires-Dist: pytest-inmanta-extensions ~=14.0.0.0.dev ; extra == 'pytest-inmanta-extensions'

# Inmanta
[![pypi version](https://img.shields.io/pypi/v/inmanta.svg)](https://pypi.python.org/pypi/inmanta-core/)


Inmanta is an automation and orchestration tool to efficiently deploy and manage your software
services, including all (inter)dependencies to other services and the underpinning infrastructure.
It eliminates the complexity of managing large-scale, heterogeneous infrastructures and highly
distributed systems.

The key characteristics of Inmanta are:
 * Integrated: Inmanta integrates configuration management and orchestration into a single tool,
   taking infrastructure as code to a whole new level.
 * Powerful configuration model: Infrastructure and application services are described using a
   high-level configuration model that allows the definition of (an unlimited amount of) your own
   entities and abstraction levels. It works from a single source, which can be tested, versioned,
   evolved and reused.
 * Dependency management: Inmanta's configuration model describes all the relations between and
   dependencies to other services, packages, underpinning platforms and infrastructure services.
   This enables efficient deployment as well as provides an holistic view on your applications,
   environments and infrastructure.
 * End-to-end compliance: The architecture of your software service drives the configuration,
   guaranteeing consistency across the entire stack and throughout distributed systems at any time.
   This compliance with the architecture can be achieved thanks to the integrated management
   approach and the configuration model using dependencies.

Currently, the Inmanta project is mainly developed and maintained by Inmanta NV.

## Links

* [Documentation](https://docs.inmanta.com/community/latest/)
* [Quickstart](https://docs.inmanta.com/community/latest/quickstart.html)

## Install

* [Install Guide](https://docs.inmanta.com/community/latest/install.html)

## Running the tests using tox

```
$ python3 -m venv env
$ source env/bin/activate
$ pip install -U pip tox
$ tox
```

Additional pytest arguments can be passed to tox via the `INMANTA_EXTRA_PYTEST_ARGS` environment variable.
In order to run the test suite in fast mode, set `INMANTA_EXTRA_PYTEST_ARGS='--fast'`.
