Metadata-Version: 2.1
Name: seed-farmer
Version: 3.2.2
Summary: The AWS Professional Services CLI tool SeedFarmer for GitOps support with AWS_CodeSeeder
Home-page: https://github.com/awslabs/seed-farmer
Author: AWS Professional Services
Author-email: aws-proserve-opensource@amazon.com
License: Apache License 2.0
Project-URL: Org Site, https://aws.amazon.com/professional-services/
Keywords: aws,cdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.7,<3.12
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
License-File: VERSION
Requires-Dist: aws-codeseeder (~=0.11.0)
Requires-Dist: cookiecutter (~=2.1.0)
Requires-Dist: pyhumps (~=3.5.0)
Requires-Dist: pydantic (~=2.5.3)
Requires-Dist: executor (~=23.2)
Requires-Dist: typing-extensions (~=4.6.1)
Requires-Dist: rich (~=12.4.0)
Requires-Dist: requests (<2.32,>=2.28)
Requires-Dist: python-dotenv (~=0.21.0)
Requires-Dist: gitpython (~=3.1.30)
Requires-Dist: gitignore-parser (~=0.1.2)
Requires-Dist: pyyaml (~=6.0.1)
Requires-Dist: urllib3 (~=1.26.17)
Requires-Dist: certifi (~=2023.7.22)
Requires-Dist: packaging (~=23.2)

# Seed-Farmer

Seed-Farmer (seedfarmer) is an opensource orchestration tool that works with AWS CodeSeeder (see [github](https://github.com/awslabs/aws-codeseeder) or [docs](https://aws-codeseeder.readthedocs.io/en/latest/)) and acts as an orchestration tool modeled after [GitOps deployments](https://www.gitops.tech/).  It has a CommandLine Interface (CLI) based in Python. 

Please see our [SeedFarmer Documentation](https://seed-farmer.readthedocs.io/en/latest/).

For information related to the architecture of Seed-Farmer or the deployment scheme...please see:
- [Seed-Farmer multi-account architecture](https://seed-farmer.readthedocs.io/en/latest/architecture.html)
- [Seed-Farmer processing steps](https://seed-farmer.readthedocs.io/en/latest/architecture.html#method-of-processing)

Seed-Farmer uses modular code deployments ([see modules](https://seed-farmer.readthedocs.io/en/latest/module_development.html)) leveraging [manifests](https://seed-farmer.readthedocs.io/en/latest/manifests.html) and [deployspecs](https://seed-farmer.readthedocs.io/en/latest/module_development.html#deployspec), keeping track of changes and applying changes as need / detected.


## Getting Started
The Seed-Farmer library is available on PyPi.  Install the library in a python virtual environment.


```bash
python3 -m venv .venv
source .venv/bin/activate
pip install seed-farmer
```

A [project](https://seed-farmer.readthedocs.io/en/latest/project_development.html) is now necessary to begin create modules.  
