Metadata-Version: 2.4
Name: reusio
Version: 0.0.1
Summary: A standard + thin toolkit for building and maintaining a fleet of small, reusable automations. Early work in progress.
Project-URL: Homepage, https://github.com/reusio/reusio
Project-URL: Repository, https://github.com/reusio/reusio
Author: Kacper Borowiecki
License: MIT License
        
        Copyright (c) 2026 Kacper Borowiecki
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: automation,connectors,etl,integrations,rpa,toolkit
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# reusio

> **A standard + a thin toolkit for building and maintaining a whole _fleet_ of small, reusable automations** — data ETL, API/SaaS integrations, and light RPA.

> **Status: early work in progress.** This release reserves the package name while the toolkit is in active design.

## The idea

The hard, reusable parts of an automation — connecting to a database, authenticating to an API, sending email, opening an SFTP session — should be written **once**, tested once, and reused everywhere. `reusio` is a single standard shape for an automation plus a tested, versioned library of connectors and a searchable reuse **catalog**, so the second automation is faster to build than the first, and the hundredth faster than the tenth.

- **One shape.** Every automation declares the integrations it needs in config and receives connected, typed handles — declaring is the only wiring.
- **Reuse over re-derivation.** A shared connector library + catalog; search before you write.
- **Guaranteed lifecycle.** Setup → work → teardown, with cleanup on success _and_ failure.
- **Pluggable secrets, no lock-in.** Secrets come from a configured backend; the scheduler only triggers.
- **AI-first authoring.** Explicit conventions a coding assistant can scaffold against, guarded by a type-check gate.

## Install

```bash
pip install reusio
```

## License

MIT © 2026 Kacper Borowiecki
