Metadata-Version: 2.1
Name: pyplugin-lib
Version: 0.2.0
Summary: Pythonic inversion of control targeting ports and adapters application development style
Home-page: https://github.com/igoras1993/plug-in
License: BSD-3-Clause
Keywords: plugins,adapters,ioc,di,dependency,injection
Author: kuta.0
Author-email: igor.kantorski@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Project-URL: Documentation, https://github.com/igoras1993/plug-in
Project-URL: Repository, https://github.com/igoras1993/plug-in
Description-Content-Type: text/markdown

# Plug In

`plug-in` is a library that allows You to manage dependencies across  Your project
code. Usage of `plug-in` in Your apps will result in easy-to-maintain project
structure. It guides You throughout development process by bringing the
[plugin architecture]() into Your application. `plug-in` implements this architecture
for You, with explicit requirements on Your project structure.

## Project status

I am actively developing this project right now. I've implemented the basic
functionalities and still working on API. Right now, project is
in **alpha phase**.


## Project goals

- Supply SDK for inversion of control
- Familiar for python developers
- Fully typed
- Mix best things from IoC and python code style
- Async support
- Small codebase

## Contributing

### How to start

...

### Commits
All commits should be structured according to [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/).

For answer "Which one commit type should I use?", please refer to below table.

#### Commit types

| Commit Type | Title                    | Description                                                                                                 |
|:-----------:|--------------------------|-------------------------------------------------------------------------------------------------------------|
|   `feat`    | Features                 | A new feature                                                                                               |
|    `fix`    | Bug Fixes                | A bug Fix                                                                                                   |
|   `docs`    | Documentation            | Documentation only changes                                                                                  |
|   `style`   | Styles                   | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)      |
| `refactor`  | Code Refactoring         | A code change that neither fixes a bug nor adds a feature                                                   |
|   `perf`    | Performance Improvements | A code change that improves performance                                                                     |
|   `test`    | Tests                    | Adding missing tests or correcting existing tests                                                           |
|   `build`   | Builds                   | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)         |
|    `ci`     | Continuous Integrations  | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) |
|   `chore`   | Chores                   | Other changes that don't modify src or test files                                                           |
|  `revert`   | Reverts                  | Reverts a previous commit                                                                                   |

Source: https://github.com/pvdlg/conventional-changelog-metahub/blob/master/README.md#commit-types

